lavf: add av_ prefix to dump_format()

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 610219a598)
This commit is contained in:
Anton Khirnov 2011-02-16 08:52:35 +00:00 committed by Michael Niedermayer
parent 09e22efc7e
commit 0ebf475494
8 changed files with 33 additions and 13 deletions

View file

@ -3261,10 +3261,20 @@ 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);