Commit 77d1e88c authored by Tobias Rapp's avatar Tobias Rapp Committed by 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: 's avatarTobias Rapp <t.rapp@noa-archive.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent cb928fc4
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment