forked from FFmpeg/FFmpeg
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:
parent
cb928fc448
commit
77d1e88cf5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue