avcodec/hqx: use init_get_bits8()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
pull/113/head^2
Paul B Mahol 10 years ago
parent 5440076303
commit aa7a2fa58f
  1. 4
      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);

Loading…
Cancel
Save