From aa7a2fa58fdb9b9d15c0e3b20411ef24228dd7e2 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 27 Feb 2015 09:30:13 +0000 Subject: [PATCH] avcodec/hqx: use init_get_bits8() Signed-off-by: Paul B Mahol --- libavcodec/hqx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/hqx.c b/libavcodec/hqx.c index 9b8b1ada95..d7e605f63e 100644 --- a/libavcodec/hqx.c +++ b/libavcodec/hqx.c @@ -590,8 +590,8 @@ static int hqx_decode_frame(AVCodecContext *avctx, void *data, av_log(avctx, AV_LOG_ERROR, "Invalid slice size.\n"); break; } - ret = init_get_bits(&gb, src + slice_off[slice], - (slice_off[slice + 1] - slice_off[slice]) * 8); + ret = init_get_bits8(&gb, src + slice_off[slice], + slice_off[slice + 1] - slice_off[slice]); if (ret < 0) return ret; ret = decode_slice(ctx, pic, &gb, slice, decode_func);