diff options
author | Tobias Rapp <t.rapp@noa-archive.com> | 2016-05-12 10:26:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-05-13 03:49:26 +0200 |
commit | 77d1e88cf5282ea62c161db32de5092522d91cf5 (patch) | |
tree | 1f1838559970e480b00042e47959afaba1ae988e | |
parent | cb928fc448f9566e6f6c28d53fa4c2388e732a2b (diff) | |
download | ffmpeg-77d1e88cf5282ea62c161db32de5092522d91cf5.tar.gz |
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>
-rw-r--r-- | libavformat/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |