summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-24 14:33:34 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-01-25 17:00:14 +0900
commitd60940a0809e0384d3ebe69e7fde2db490bed639 (patch)
treeaf904d66bf4bfd64c287a465bb9a6481cdd01b98
parentdab7602a892e5c570c5f63478cc5d929a7e2a356 (diff)
downloadmpv-d60940a0809e0384d3ebe69e7fde2db490bed639.tar.bz2
mpv-d60940a0809e0384d3ebe69e7fde2db490bed639.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.
-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;
}