Commit fdf3a749 authored by Anne Aaron's avatar Anne Aaron Committed by Martin Storsjö

mpeg12: Do not change frame_pred_frame_dct flag and demote error into a warning

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent bb0618e6
......@@ -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) {
......
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