From 484cc66f577ba25c142d73c1c2c6590b01d031c2 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 20 Dec 2015 21:31:55 +0100 Subject: avcodec/indeo2: use init_get_bits8 Signed-off-by: Paul B Mahol --- libavcodec/indeo2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/indeo2.c') diff --git a/libavcodec/indeo2.c b/libavcodec/indeo2.c index 74135b9af0..3424e00b38 100644 --- a/libavcodec/indeo2.c +++ b/libavcodec/indeo2.c @@ -165,7 +165,8 @@ static int ir2_decode_frame(AVCodecContext *avctx, buf[i] = ff_reverse[buf[i]]; #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 ((ret = ir2_decode_plane(s, avctx->width, avctx->height, -- cgit v1.2.3