[FFmpeg-devel] [PATCH 3/4] avcodec/ac3dec: use init_get_bits8()
Paul B Mahol
onemda at gmail.com
Tue Feb 3 16:29:46 CET 2015
Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
libavcodec/ac3dec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index d3e8713..20c2889 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -1429,7 +1429,8 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data,
memcpy(s->input_buffer, buf, FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE));
buf = s->input_buffer;
/* initialize the GetBitContext with the start of valid AC-3 Frame */
- init_get_bits(&s->gbc, buf, buf_size * 8);
+ if ((ret = init_get_bits8(&s->gbc, buf, buf_size)) < 0)
+ return ret;
/* parse the syncinfo */
err = parse_frame_header(s);
--
1.7.11.2
More information about the ffmpeg-devel
mailing list