1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-04 17:44:49 +02:00

avcodec/shorten: use init_get_bits8()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2015-07-03 16:57:11 +00:00
parent c0d676f977
commit 94cfb6db7d

View File

@ -466,7 +466,8 @@ static int shorten_decode_frame(AVCodecContext *avctx, void *data,
}
}
/* init and position bitstream reader */
init_get_bits(&s->gb, buf, buf_size * 8);
if ((ret = init_get_bits8(&s->gb, buf, buf_size)) < 0)
return ret;
skip_bits(&s->gb, s->bitindex);
/* process header or next subblock */