summaryrefslogtreecommitdiffstats
path: root/stream/stream_edl.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-24 14:33:34 +0100
committerAlessandro Ghedini <alessandro@ghedini.me>2015-01-14 17:03:28 +0100
commit34cbc9057c3d291c255d34fb71416882ce26c016 (patch)
treec463c7611941f4790eb223768a3a0c093e0dd859 /stream/stream_edl.c
parent36a2dd5ace39decdeb112947cd138eef95a7f724 (diff)
downloadmpv-34cbc9057c3d291c255d34fb71416882ce26c016.tar.bz2
mpv-34cbc9057c3d291c255d34fb71416882ce26c016.tar.xz
stream: always disable cache for pseudo-streams
Streams which don't have a full_buffer function never return any actual data. Slight improvement over commit 5640c195.
Diffstat (limited to 'stream/stream_edl.c')
-rw-r--r--stream/stream_edl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/stream/stream_edl.c b/stream/stream_edl.c
index c74aabf257..4873047cc2 100644
--- a/stream/stream_edl.c
+++ b/stream/stream_edl.c
@@ -7,7 +7,6 @@ static int s_open (struct stream *stream)
{
stream->type = STREAMTYPE_EDL;
stream->demuxer = "edl";
- stream->allow_caching = false;
return STREAM_OK;
}