From 77d1e88cf5282ea62c161db32de5092522d91cf5 Mon Sep 17 00:00:00 2001 From: Tobias Rapp Date: Thu, 12 May 2016 10:26:03 +0200 Subject: 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 Signed-off-by: Michael Niedermayer --- libavformat/dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/dump.c') diff --git a/libavformat/dump.c b/libavformat/dump.c index d6a3249728..9eb6146785 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; } -- cgit v1.2.3