ffmpeg | branch: master | Paul B Mahol <[email protected]> | Fri Feb 3 20:36:23 2017 +0100| [c331be21c48a8d273feb0c0131dc524d2c2fc3da] | committer: Paul B Mahol
avcodec/ivi: use init_get_bits8() Signed-off-by: Paul B Mahol <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c331be21c48a8d273feb0c0131dc524d2c2fc3da --- libavcodec/ivi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/ivi.c b/libavcodec/ivi.c index 70f08a8..ad48abb 100644 --- a/libavcodec/ivi.c +++ b/libavcodec/ivi.c @@ -1060,7 +1060,9 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, int buf_size = avpkt->size; int result, p, b; - init_get_bits(&ctx->gb, buf, buf_size * 8); + result = init_get_bits8(&ctx->gb, buf, buf_size); + if (result < 0) + return result; ctx->frame_data = buf; ctx->frame_size = buf_size; _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
