summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-27 19:51:14 +0100
committerwm4 <wm4@nowhere>2015-02-27 19:51:14 +0100
commitfbf76da913b2d39a7da3cc7cea3d8b61f3c2f540 (patch)
treebb621487e15acecb2e1c1e94aab1125138d21931 /demux
parent5824eb7107a612880f68cc8e4f42cfff1bbf88ba (diff)
downloadmpv-fbf76da913b2d39a7da3cc7cea3d8b61f3c2f540.tar.bz2
mpv-fbf76da913b2d39a7da3cc7cea3d8b61f3c2f540.tar.xz
stream: remove stream filter concept
Unused since the previous commit. (Apparently it was a stupid idea.)
Diffstat (limited to 'demux')
-rw-r--r--demux/demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 21898e3156..16918e5453 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -955,7 +955,7 @@ static struct demuxer *open_given_type(struct mpv_global *global,
stream_seek(stream, 0);
// Peek this much data to avoid that stream_read() run by some demuxers
- // or stream filters will flush previous peeked data.
+ // will flush previous peeked data.
stream_peek(stream, STREAM_BUFFER_SIZE);
in->d_thread->params = params; // temporary during open()