Commit e483606d authored by Paul B Mahol's avatar Paul B Mahol

avcodec/g722dec: use init_get_bits8()

parent f89919d4
......@@ -100,7 +100,9 @@ static int g722_decode_frame(AVCodecContext *avctx, void *data,
return ret;
out_buf = (int16_t *)frame->data[0];
init_get_bits(&gb, avpkt->data, avpkt->size * 8);
ret = init_get_bits8(&gb, avpkt->data, avpkt->size);
if (ret < 0)
return ret;
for (j = 0; j < avpkt->size; j++) {
int ilow, ihigh, rlow, rhigh, dhigh;
......
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