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@noa-archive.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Tobias Rapp 2016-05-12 10:26:03 +02:00 committed by Michael Niedermayer
parent cb928fc448
commit 77d1e88cf5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}