summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-02-16 08:52:35 +0000
committerMichael Niedermayer <michaelni@gmx.at>2011-02-18 19:52:28 +0100
commit0ebf475494837edd07fa6f58c540364795f9551c (patch)
treef0cf751b28189bf3193af3f247f2696d38e71aa7 /ffprobe.c
parent09e22efc7e0d98a90e99c9c2047a203c89d9dcd9 (diff)
lavf: add av_ prefix to dump_format()
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 610219a598095f938705f200dfe3946455ef871a)
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 2c99e5a6b9..94b1d9b2cf 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -277,7 +277,7 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
return err;
}
- dump_format(fmt_ctx, 0, filename, 0);
+ av_dump_format(fmt_ctx, 0, filename, 0);
/* bind a decoder to each input stream */
for (i = 0; i < fmt_ctx->nb_streams; i++) {