mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 21:45:10 +00:00
mpeg4videodec: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0abab00303
commit
43c609374a
@ -1179,7 +1179,7 @@ static int mpeg4_decode_mb(MpegEncContext *s,
|
||||
static int8_t quant_tab[4] = { -1, -2, 1, 2 };
|
||||
const int xy= s->mb_x + s->mb_y * s->mb_stride;
|
||||
|
||||
assert(s->h263_pred);
|
||||
av_assert2(s->h263_pred);
|
||||
|
||||
if (s->pict_type == AV_PICTURE_TYPE_P || s->pict_type==AV_PICTURE_TYPE_S) {
|
||||
do{
|
||||
|
Loading…
Reference in New Issue
Block a user