[FFmpeg-cvslog] ra288: Convert to the new bitstream reader
Alexandra Hájková
git at videolan.org
Tue Apr 4 21:52:31 EEST 2017
ffmpeg | branch: master | Alexandra Hájková <alexandra at khirnov.net> | Wed Apr 13 19:34:49 2016 +0200| [c60cda7cb476315fd7f6d28715316b1aff2e080a] | committer: Diego Biurrun
ra288: Convert to the new bitstream reader
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c60cda7cb476315fd7f6d28715316b1aff2e080a
---
libavcodec/ra288.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index 96d8d1e..bc3fe29 100644
--- a/libavcodec/ra288.c
+++ b/libavcodec/ra288.c
@@ -25,8 +25,8 @@
#define BITSTREAM_READER_LE
#include "avcodec.h"
+#include "bitstream.h"
#include "celp_filters.h"
-#include "get_bits.h"
#include "internal.h"
#include "lpc.h"
#include "ra288.h"
@@ -181,7 +181,7 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data,
float *out;
int i, ret;
RA288Context *ractx = avctx->priv_data;
- GetBitContext gb;
+ BitstreamContext bc;
if (buf_size < avctx->block_align) {
av_log(avctx, AV_LOG_ERROR,
@@ -198,11 +198,11 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data,
}
out = (float *)frame->data[0];
- init_get_bits(&gb, buf, avctx->block_align * 8);
+ bitstream_init(&bc, buf, avctx->block_align * 8);
for (i=0; i < RA288_BLOCKS_PER_FRAME; i++) {
- float gain = amptable[get_bits(&gb, 3)];
- int cb_coef = get_bits(&gb, 6 + (i&1));
+ float gain = amptable[bitstream_read(&bc, 3)];
+ int cb_coef = bitstream_read(&bc, 6 + (i & 1));
decode(ractx, gain, cb_coef);
More information about the ffmpeg-cvslog
mailing list