mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
avcodec/hqx: use init_get_bits8()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
5440076303
commit
aa7a2fa58f
@ -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…
Reference in New Issue
Block a user