1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-16 12:17:12 +00:00

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.
This commit is contained in:
wm4 2014-12-24 14:33:34 +01:00 committed by Diogo Franco (Kovensky)
parent dab7602a89
commit d60940a080

View File

@ -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;
}