Commit 49ec0d8e authored by Michael Niedermayer's avatar Michael Niedermayer

mpeg12: print invalid cbp value

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 343900a1
......@@ -1061,7 +1061,7 @@ static int mpeg_decode_mb(MpegEncContext *s, DCTELEM block[12][64])
s->dsp.clear_blocks(s->block[6]);
}
if (cbp <= 0) {
av_log(s->avctx, AV_LOG_ERROR, "invalid cbp at %d %d\n", s->mb_x, s->mb_y);
av_log(s->avctx, AV_LOG_ERROR, "invalid cbp %d at %d %d\n", cbp, s->mb_x, s->mb_y);
return -1;
}
......
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