mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/indeo2: use init_get_bits8
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
d4c47333e1
commit
484cc66f57
@ -165,7 +165,8 @@ static int ir2_decode_frame(AVCodecContext *avctx,
|
|||||||
buf[i] = ff_reverse[buf[i]];
|
buf[i] = ff_reverse[buf[i]];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
init_get_bits(&s->gb, buf + start, (buf_size - start) * 8);
|
if ((ret = init_get_bits8(&s->gb, buf + start, buf_size - start)) < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
if (s->decode_delta) { /* intraframe */
|
if (s->decode_delta) { /* intraframe */
|
||||||
if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
|
if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user