From b7061982079f33217e3d44f10d9892257f47c7ca Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 23 Dec 2014 14:57:50 +0100 Subject: stream_edl: disable caching stream_edl merely makes demux_edl act "special", which checks for the stream type explicitly and then does something with its URL. If a cache is added before the stream, it'll try to use the cache's URL (i.e. an empty string), and will then obviously fail to parse the URL. While this is slightly stupid, just disabling the entirely useless cache is the most effective solution. Fixes #1378. --- stream/stream_edl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/stream/stream_edl.c b/stream/stream_edl.c index 4873047cc2..c74aabf257 100644 --- a/stream/stream_edl.c +++ b/stream/stream_edl.c @@ -7,6 +7,7 @@ static int s_open (struct stream *stream) { stream->type = STREAMTYPE_EDL; stream->demuxer = "edl"; + stream->allow_caching = false; return STREAM_OK; } -- cgit v1.2.3