mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 13:30:45 +00:00
avcodec/cllc: use init_get_bits8()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
7801a54ec3
commit
57bca64b3f
@ -394,7 +394,8 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
|
||||
ctx->bdsp.bswap16_buf((uint16_t *) ctx->swapped_buf, (uint16_t *) src,
|
||||
data_size / 2);
|
||||
|
||||
init_get_bits(&gb, ctx->swapped_buf, data_size * 8);
|
||||
if ((ret = init_get_bits8(&gb, ctx->swapped_buf, data_size)) < 0)
|
||||
return ret;
|
||||
|
||||
/*
|
||||
* Read in coding type. The types are as follows:
|
||||
|
Loading…
Reference in New Issue
Block a user