summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-27 19:51:14 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-03-03 16:02:07 +0900
commit517f15dc497ed9b5f5c44ff3574395a97eaa234f (patch)
tree74ce9a0c9e2e2b738256c1616b7e01b48a742a13 /demux
parent62cf557b5f02590893d36a5cf8a261e845fc3e15 (diff)
downloadmpv-517f15dc497ed9b5f5c44ff3574395a97eaa234f.tar.bz2
mpv-517f15dc497ed9b5f5c44ff3574395a97eaa234f.tar.xz
stream: remove stream filter concept
Unused since the previous commit. (Apparently it was a stupid idea.) (cherry picked from commit fbf76da913b2d39a7da3cc7cea3d8b61f3c2f540)
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 d469c578b9..06511aaa50 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -888,7 +888,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);
int ret = demuxer->desc->open(in->d_thread, check);