mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/dump: use format dump_separator if the codec one is not set
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f9a1317479
commit
0578623039
|
@ -347,8 +347,14 @@ static void dump_stream_format(AVFormatContext *ic, int i,
|
||||||
AVStream *st = ic->streams[i];
|
AVStream *st = ic->streams[i];
|
||||||
AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
|
AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
|
||||||
char *separator = ic->dump_separator;
|
char *separator = ic->dump_separator;
|
||||||
|
char **codec_separator = av_opt_ptr(st->codec->av_class, st->codec, "dump_separator");
|
||||||
|
int use_format_separator = !*codec_separator;
|
||||||
|
|
||||||
|
if (use_format_separator)
|
||||||
|
*codec_separator = av_strdup(separator);
|
||||||
avcodec_string(buf, sizeof(buf), st->codec, is_output);
|
avcodec_string(buf, sizeof(buf), st->codec, is_output);
|
||||||
|
if (use_format_separator)
|
||||||
|
av_freep(codec_separator);
|
||||||
av_log(NULL, AV_LOG_INFO, " Stream #%d:%d", index, i);
|
av_log(NULL, AV_LOG_INFO, " Stream #%d:%d", index, i);
|
||||||
|
|
||||||
/* the pid is an important information, so we display it */
|
/* the pid is an important information, so we display it */
|
||||||
|
|
Loading…
Reference in New Issue