From 2b707018bca80496d52ccfd2777af98cc0a21546 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 3 Feb 2017 20:29:27 +0100 Subject: avcodec/metasound: use init_get_bits8() Signed-off-by: Paul B Mahol --- libavcodec/metasound.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libavcodec/metasound.c') diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c index 6a7e31a26b..87cd7cb211 100644 --- a/libavcodec/metasound.c +++ b/libavcodec/metasound.c @@ -170,9 +170,10 @@ static int metasound_read_bitstream(AVCodecContext *avctx, TwinVQContext *tctx, int channels = tctx->avctx->channels; int sub; GetBitContext gb; - int i, j, k; + int i, j, k, ret; - init_get_bits(&gb, buf, buf_size * 8); + if ((ret = init_get_bits8(&gb, buf, buf_size)) < 0) + return ret; for (tctx->cur_frame = 0; tctx->cur_frame < tctx->frames_per_packet; tctx->cur_frame++) { -- cgit v1.2.3