mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-01 01:17:47 +00:00
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:
parent
09e22efc7e
commit
0ebf475494
8 changed files with 33 additions and 13 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue