[FFmpeg-devel] [PATCH] ffprobe: discard non-selected streams
Clément Bœsch
u at pkh.me
Tue May 9 11:56:32 EEST 2017
From: Clément Bœsch <cboesch at gopro.com>
---
ffprobe.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/ffprobe.c b/ffprobe.c
index 8129bcedf0..f2a3cc7a73 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -2886,6 +2886,8 @@ static int probe_file(WriterContext *wctx, const char *filename)
} else {
selected_streams[i] = 1;
}
+ if (!selected_streams[i])
+ ifile.fmt_ctx->streams[i]->discard = AVDISCARD_ALL;
}
if (do_read_frames || do_read_packets) {
--
2.12.2
More information about the ffmpeg-devel
mailing list