mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/mpc7: use init_get_bits8()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
6a6e20bfdf
commit
f09afb4a90
@ -231,7 +231,8 @@ static int mpc7_decode_frame(AVCodecContext * avctx, void *data,
|
|||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
c->bdsp.bswap_buf((uint32_t *) c->bits, (const uint32_t *) buf,
|
c->bdsp.bswap_buf((uint32_t *) c->bits, (const uint32_t *) buf,
|
||||||
buf_size >> 2);
|
buf_size >> 2);
|
||||||
init_get_bits(&gb, c->bits, buf_size * 8);
|
if ((ret = init_get_bits8(&gb, c->bits, buf_size)) < 0)
|
||||||
|
return ret;
|
||||||
skip_bits_long(&gb, skip);
|
skip_bits_long(&gb, skip);
|
||||||
|
|
||||||
/* read subband indexes */
|
/* read subband indexes */
|
||||||
|
Loading…
Reference in New Issue
Block a user