diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-16 08:52:35 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-16 23:39:56 +0000 |
commit | 610219a598095f938705f200dfe3946455ef871a (patch) | |
tree | c7fd37b7ad37b19cc678ccdcd88aed202d26a152 /libavformat/utils.c | |
parent | 2c35a6bde95a382e2d48570255deb67a7633fa46 (diff) | |
download | ffmpeg-610219a598095f938705f200dfe3946455ef871a.tar.gz |
lavf: add av_ prefix to dump_format()
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index be4d6f78af..b325d06276 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3261,11 +3261,21 @@ static void dump_stream_format(AVFormatContext *ic, int i, int index, int is_out dump_metadata(NULL, st->metadata, " "); } +#if FF_API_DUMP_FORMAT void dump_format(AVFormatContext *ic, int index, const char *url, int is_output) { + av_dump_format(ic, index, url, is_output); +} +#endif + +void av_dump_format(AVFormatContext *ic, + int index, + const char *url, + int is_output) +{ int i; uint8_t *printed = av_mallocz(ic->nb_streams); if (ic->nb_streams && !printed) |