mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
avcodec/mpeg4videodec: fix mcbpc error messages
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2baf1c8c60
commit
141a84688f
@ -614,7 +614,7 @@ static int mpeg4_decode_partition_a(Mpeg4DecContext *ctx)
|
||||
cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2);
|
||||
if (cbpc < 0) {
|
||||
av_log(s->avctx, AV_LOG_ERROR,
|
||||
"cbpc corrupted at %d %d\n", s->mb_x, s->mb_y);
|
||||
"mcbpc corrupted at %d %d\n", s->mb_x, s->mb_y);
|
||||
return -1;
|
||||
}
|
||||
} while (cbpc == 8);
|
||||
@ -686,7 +686,7 @@ try_again:
|
||||
cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
|
||||
if (cbpc < 0) {
|
||||
av_log(s->avctx, AV_LOG_ERROR,
|
||||
"cbpc corrupted at %d %d\n", s->mb_x, s->mb_y);
|
||||
"mcbpc corrupted at %d %d\n", s->mb_x, s->mb_y);
|
||||
return -1;
|
||||
}
|
||||
if (cbpc == 20)
|
||||
@ -1333,7 +1333,7 @@ static int mpeg4_decode_mb(MpegEncContext *s, int16_t block[6][64])
|
||||
cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
|
||||
if (cbpc < 0) {
|
||||
av_log(s->avctx, AV_LOG_ERROR,
|
||||
"cbpc damaged at %d %d\n", s->mb_x, s->mb_y);
|
||||
"mcbpc damaged at %d %d\n", s->mb_x, s->mb_y);
|
||||
return -1;
|
||||
}
|
||||
} while (cbpc == 20);
|
||||
|
Loading…
Reference in New Issue
Block a user