summaryrefslogtreecommitdiffstats
path: root/player/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/misc.c')
-rw-r--r--player/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/misc.c b/player/misc.c
index 0b2548b98b..fc98136e5c 100644
--- a/player/misc.c
+++ b/player/misc.c
@@ -106,8 +106,8 @@ double get_main_demux_pts(struct MPContext *mpctx)
{
double main_new_pos = MP_NOPTS_VALUE;
if (mpctx->demuxer) {
- for (int n = 0; n < mpctx->demuxer->num_streams; n++) {
- struct sh_stream *stream = mpctx->demuxer->streams[n];
+ for (int n = 0; n < demux_get_num_stream(mpctx->demuxer); n++) {
+ struct sh_stream *stream = demux_get_stream(mpctx->demuxer, n);
if (main_new_pos == MP_NOPTS_VALUE && stream->type != STREAM_SUB)
main_new_pos = demux_get_next_pts(stream);
}