summaryrefslogtreecommitdiffstats
path: root/player/core.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-22 19:06:21 +0100
committerwm4 <wm4@nowhere>2015-02-22 19:06:21 +0100
commit53867aa9d834fd6a6314803655bd4c444d0e1df4 (patch)
treedb31957c38a24f0fe8ebc2129dba161d1cdd979c /player/core.h
parent0466ce2f98ef1cdba264c016daa1061e797e1b91 (diff)
downloadmpv-53867aa9d834fd6a6314803655bd4c444d0e1df4.tar.bz2
mpv-53867aa9d834fd6a6314803655bd4c444d0e1df4.tar.xz
player: fix demuxer lifetime management
Commit f54220d9 attempted to improve this, but it got worse. Now there was a crash when ytdl_hook.lua added external tracks. This happened because close_unused_demuxers() assumed that sources[0] was the main demuxer (so that it didn't close it). This assumption failed, because the ytdl script can add external tracks before the main file is loaded. The easy fix would have been to check for master_demuxer, and not i==0. But instead give up on the old idea, make some stricter assumptions how demuxers and external tracks map, and simplify the code.
Diffstat (limited to 'player/core.h')
-rw-r--r--player/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/core.h b/player/core.h
index ad700cbc22..1f2b72bfb4 100644
--- a/player/core.h
+++ b/player/core.h
@@ -180,7 +180,7 @@ typedef struct MPContext {
int64_t shown_vframes, shown_aframes;
struct stream *stream; // stream that was initially opened
- struct demuxer **sources;
+ struct demuxer **sources; // all open demuxers
int num_sources;
struct timeline *tl;
@@ -191,7 +191,7 @@ typedef struct MPContext {
int num_chapters;
double video_offset;
- struct demuxer *demuxer;
+ struct demuxer *demuxer; // can change with timeline
struct mp_tags *filtered_tags;
struct track **tracks;