Commit 15b9c0b4 authored by Paul B Mahol's avatar Paul B Mahol

escape124: switch to init_get_bits8()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent cdc3f8f3
...@@ -200,7 +200,6 @@ static int escape124_decode_frame(AVCodecContext *avctx, ...@@ -200,7 +200,6 @@ static int escape124_decode_frame(AVCodecContext *avctx,
void *data, int *got_frame, void *data, int *got_frame,
AVPacket *avpkt) AVPacket *avpkt)
{ {
const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size; int buf_size = avpkt->size;
Escape124Context *s = avctx->priv_data; Escape124Context *s = avctx->priv_data;
AVFrame *frame = data; AVFrame *frame = data;
...@@ -218,7 +217,8 @@ static int escape124_decode_frame(AVCodecContext *avctx, ...@@ -218,7 +217,8 @@ static int escape124_decode_frame(AVCodecContext *avctx,
int ret; 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 // This call also guards the potential depth reads for the
// codebook unpacking. // codebook unpacking.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment