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:
committed by
Michael Niedermayer
parent
09e22efc7e
commit
0ebf475494
@ -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);
|
||||
|
Reference in New Issue
Block a user