diff options
author | wm4 <wm4@nowhere> | 2015-02-20 22:08:02 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-02-20 22:08:02 +0100 |
commit | ee653b8a26dcd7b89de046fa6a13baa1c6ca7c27 (patch) | |
tree | 5228a0c40a87af9b3e37f6852f890c911c6f771c /demux/demux_edl.c | |
parent | 1cac7d1a659faffd1514a3269edf9fcae4d357c1 (diff) | |
download | mpv-ee653b8a26dcd7b89de046fa6a13baa1c6ca7c27.tar.bz2 mpv-ee653b8a26dcd7b89de046fa6a13baa1c6ca7c27.tar.xz |
demux: timeline: honor quit requests
Diffstat (limited to 'demux/demux_edl.c')
-rw-r--r-- | demux/demux_edl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux_edl.c b/demux/demux_edl.c index 7986489397..ed014314c9 100644 --- a/demux/demux_edl.c +++ b/demux/demux_edl.c @@ -141,7 +141,7 @@ static struct demuxer *open_source(struct timeline *tl, char *filename) if (strcmp(d->stream->url, filename) == 0) return d; } - struct demuxer *d = demux_open_url(filename, NULL, NULL, tl->global); + struct demuxer *d = demux_open_url(filename, NULL, tl->cancel, tl->global); if (d) { MP_TARRAY_APPEND(tl, tl->sources, tl->num_sources, d); } else { |