summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 2560a0736d..c62c0754b8 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -1185,7 +1185,7 @@ static int cached_demux_control(struct demux_internal *in, int cmd, void *arg)
r->ts_range[1] = MP_PTS_MIN(r->ts_range[1], ds->last_ts);
}
}
- r->idle &= !r->underrun;
+ r->idle = (r->idle && !r->underrun) || r->eof;
return DEMUXER_CTRL_OK;
}
}