mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
avcodec/mss4: check return value of init_get_bits8()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
e87e20613b
commit
418be7ceb4
@ -572,7 +572,8 @@ static int mss4_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
|
|||||||
ff_mss34_gen_quant_mat(c->quant_mat[i], quality, !i);
|
ff_mss34_gen_quant_mat(c->quant_mat[i], quality, !i);
|
||||||
}
|
}
|
||||||
|
|
||||||
init_get_bits8(&gb, buf + HEADER_SIZE, (buf_size - HEADER_SIZE));
|
if ((ret = init_get_bits8(&gb, buf + HEADER_SIZE, buf_size - HEADER_SIZE)) < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
mb_width = FFALIGN(width, 16) >> 4;
|
mb_width = FFALIGN(width, 16) >> 4;
|
||||||
mb_height = FFALIGN(height, 16) >> 4;
|
mb_height = FFALIGN(height, 16) >> 4;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user