summaryrefslogtreecommitdiffstats
path: root/stream/cache2.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-02 22:47:56 +0200
committerwm4 <wm4@nowhere>2012-08-02 23:22:52 +0200
commit7059c15f4af047d29bed9ea8b17a3702980b8442 (patch)
treeb66abd6b9d1f87c2dda92fc926419ec1928a2597 /stream/cache2.c
parente48b21dd87468245268c470b250c3cdd5a1bbfae (diff)
downloadmpv-7059c15f4af047d29bed9ea8b17a3702980b8442.tar.bz2
mpv-7059c15f4af047d29bed9ea8b17a3702980b8442.tar.xz
mplayer: rip out --capture support
While this was an interesting idea, it wasn't actually useful. Basically it dumped the raw data (as requested by the demuxer) into a file. The result is only useful if the file format was raw or maybe some MPEG packet stream, but not with most modern file formats.
Diffstat (limited to 'stream/cache2.c')
-rw-r--r--stream/cache2.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/stream/cache2.c b/stream/cache2.c
index 47bc76a4f9..4fb663aca6 100644
--- a/stream/cache2.c
+++ b/stream/cache2.c
@@ -527,8 +527,6 @@ int cache_stream_fill_buffer(stream_t *s){
s->buf_len=len;
s->pos+=len;
// printf("[%d]",len);fflush(stdout);
- if (s->capture_file)
- stream_capture_do(s);
return len;
}