1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

Move packed B-frames message level to info.

Since they generally decode fine, printing it as a warning
might not really be appropriate.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
Reimar Döffinger
2013-09-08 19:49:01 +02:00
parent 4ebf09c346
commit 723cf4b29e

View File

@@ -1912,7 +1912,7 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){
s->divx_build= build; s->divx_build= build;
s->divx_packed= e==3 && last=='p'; s->divx_packed= e==3 && last=='p';
if(s->divx_packed && !s->showed_packed_warning) { if(s->divx_packed && !s->showed_packed_warning) {
av_log(s->avctx, AV_LOG_WARNING, "Video uses a non-standard and " av_log(s->avctx, AV_LOG_INFO, "Video uses a non-standard and "
"wasteful way to store B-frames ('packed B-frames'). " "wasteful way to store B-frames ('packed B-frames'). "
"Consider using a tool like VirtualDub or avidemux to fix it.\n"); "Consider using a tool like VirtualDub or avidemux to fix it.\n");
s->showed_packed_warning=1; s->showed_packed_warning=1;