From 15b9c0b49ff36340726371f6ed589212d5d4cb39 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 23 May 2013 19:56:43 +0000 Subject: [PATCH] escape124: switch to init_get_bits8() Signed-off-by: Paul B Mahol --- libavcodec/escape124.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/escape124.c b/libavcodec/escape124.c index 43caa7ee11..0879b3e034 100644 --- a/libavcodec/escape124.c +++ b/libavcodec/escape124.c @@ -200,7 +200,6 @@ static int escape124_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) { - const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; Escape124Context *s = avctx->priv_data; AVFrame *frame = data; @@ -218,7 +217,8 @@ static int escape124_decode_frame(AVCodecContext *avctx, int ret; - init_get_bits(&gb, buf, buf_size * 8); + if ((ret = init_get_bits8(&gb, avpkt->data, avpkt->size)) < 0) + return ret; // This call also guards the potential depth reads for the // codebook unpacking.