diff options
author | wm4 <wm4@nowhere> | 2015-02-18 21:10:43 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-02-18 21:12:57 +0100 |
commit | 102946ee0358924f22477435114785bd1f901ade (patch) | |
tree | 041231408c3ae32bee50902f700d68dd4fea55eb /demux/demux_edl.c | |
parent | 37a0c9140ad85be8d184b626759f8d24ca69aa83 (diff) | |
download | mpv-102946ee0358924f22477435114785bd1f901ade.tar.bz2 mpv-102946ee0358924f22477435114785bd1f901ade.tar.xz |
player: enable cache and demuxer thread for subtitles too
Includes some logic for not starting the demuxer thread for fully read
subtitles. (Well, the cache will still waste _lots_ of resources, and
the cache always has to be created, because we don't know whether it'll
be needed _before_ opening the file.)
See #1597.
Diffstat (limited to 'demux/demux_edl.c')
-rw-r--r-- | demux/demux_edl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/demux/demux_edl.c b/demux/demux_edl.c index c9f8f344be..f12ca2c8a1 100644 --- a/demux/demux_edl.c +++ b/demux/demux_edl.c @@ -311,6 +311,7 @@ static int try_open_file(struct demuxer *demuxer, enum demux_check check) { struct priv *p = talloc_zero(demuxer, struct priv); demuxer->priv = p; + demuxer->fully_read = true; struct stream *s = demuxer->stream; if (s->uncached_type == STREAMTYPE_EDL) { |