mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/ra288: use init_get_bits8()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d2ce3b3857
commit
df6acc81a8
@ -202,7 +202,7 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data,
|
|||||||
return ret;
|
return ret;
|
||||||
out = (float *)frame->data[0];
|
out = (float *)frame->data[0];
|
||||||
|
|
||||||
init_get_bits(&gb, buf, avctx->block_align * 8);
|
init_get_bits8(&gb, buf, avctx->block_align);
|
||||||
|
|
||||||
for (i=0; i < RA288_BLOCKS_PER_FRAME; i++) {
|
for (i=0; i < RA288_BLOCKS_PER_FRAME; i++) {
|
||||||
float gain = amptable[get_bits(&gb, 3)];
|
float gain = amptable[get_bits(&gb, 3)];
|
||||||
|
Loading…
Reference in New Issue
Block a user