From fdf3a749d3b767d3569b7a19b1f4cf7e411ee2c0 Mon Sep 17 00:00:00 2001 From: Anne Aaron Date: Wed, 4 Apr 2012 11:36:00 -0700 Subject: mpeg12: Do not change frame_pred_frame_dct flag and demote error into a warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavcodec/mpeg12.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavcodec/mpeg12.c') diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index c49343f4b2..966f2e13fe 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1521,8 +1521,7 @@ static void mpeg_decode_picture_coding_extension(Mpeg1Context *s1) } if (s->progressive_sequence && !s->frame_pred_frame_dct) { - av_log(s->avctx, AV_LOG_ERROR, "invalid frame_pred_frame_dct\n"); - s->frame_pred_frame_dct = 1; + av_log(s->avctx, AV_LOG_WARNING, "invalid frame_pred_frame_dct\n"); } if (s->picture_structure == PICT_FRAME) { -- cgit v1.2.3