[FFmpeg-cvslog] avformat/dump.c: fix mixed log levels
Tobias Rapp
git at videolan.org
Fri May 13 03:53:00 CEST 2016
ffmpeg | branch: master | Tobias Rapp <t.rapp at noa-archive.com> | Thu May 12 10:26:03 2016 +0200| [77d1e88cf5282ea62c161db32de5092522d91cf5] | committer: Michael Niedermayer
avformat/dump.c: fix mixed log levels
Previously a partial log message without newline was printed in case of
loglevel=warning.
Signed-off-by: Tobias Rapp <t.rapp at noa-archive.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=77d1e88cf5282ea62c161db32de5092522d91cf5
---
libavformat/dump.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/dump.c b/libavformat/dump.c
index d6a3249..9eb6146 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -422,7 +422,7 @@ static void dump_sidedata(void *ctx, AVStream *st, const char *indent)
dump_mastering_display_metadata(ctx, &sd);
break;
default:
- av_log(ctx, AV_LOG_WARNING,
+ av_log(ctx, AV_LOG_INFO,
"unknown side data type %d (%d bytes)", sd.type, sd.size);
break;
}
More information about the ffmpeg-cvslog
mailing list