From 8af9366e2f309f5af43dc5e0ae67de05330b699a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Wed, 17 Aug 2011 20:30:18 +0200 Subject: [PATCH 1/1] ffprobe: fix deprecated call to av_find_stream_info. --- ffprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffprobe.c b/ffprobe.c index be7b2bf24f..a314abef97 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -276,7 +276,7 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename) /* fill the streams in the format context */ - if ((err = av_find_stream_info(fmt_ctx)) < 0) { + if ((err = avformat_find_stream_info(fmt_ctx, NULL)) < 0) { print_error(filename, err); return err; } -- 2.20.1