From c960e67ad0f6b318a5f229bb662c899e7e7570d8 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 26 Aug 2011 17:40:07 +0200 Subject: Replace deprecated av_find_stream_info() by avformat_find_stream_info(). --- tools/pktdumper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/pktdumper.c') diff --git a/tools/pktdumper.c b/tools/pktdumper.c index 80816d24b9..56bc7b7ce0 100644 --- a/tools/pktdumper.c +++ b/tools/pktdumper.c @@ -89,9 +89,9 @@ int main(int argc, char **argv) return 1; } - err = av_find_stream_info(fctx); + err = avformat_find_stream_info(fctx, NULL); if (err < 0) { - fprintf(stderr, "av_find_stream_info: error %d\n", err); + fprintf(stderr, "avformat_find_stream_info: error %d\n", err); return 1; } -- cgit v1.2.3