[FFmpeg-cvslog] avformat/dump: use format dump_separator if the codec one is not set

Michael Niedermayer git at videolan.org
Thu Oct 9 05:42:02 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Oct  9 04:29:42 2014 +0200| [0578623039040141ceccdabf2c8d91a46d2dd0f1] | committer: Michael Niedermayer

avformat/dump: use format dump_separator if the codec one is not set

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0578623039040141ceccdabf2c8d91a46d2dd0f1
---

 libavformat/dump.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavformat/dump.c b/libavformat/dump.c
index 8c49ef9..56b37ff 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -347,8 +347,14 @@ static void dump_stream_format(AVFormatContext *ic, int i,
     AVStream *st = ic->streams[i];
     AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
     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);
+    if (use_format_separator)
+        av_freep(codec_separator);
     av_log(NULL, AV_LOG_INFO, "    Stream #%d:%d", index, i);
 
     /* the pid is an important information, so we display it */



More information about the ffmpeg-cvslog mailing list