]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/jvdec.c
Fixed size given to init_get_bits().
[ffmpeg] / libavcodec / jvdec.c
index f4941992f6fc19713258843701c30d52be7c13f9..f1fdee5d43026b775458369d99e65f8944a119f5 100644 (file)
@@ -150,7 +150,7 @@ static int decode_frame(AVCodecContext *avctx,
 
         if (video_type == 0 || video_type == 1) {
             GetBitContext gb;
-            init_get_bits(&gb, buf, FFMIN(video_size, buf_end - buf));
+            init_get_bits(&gb, buf, FFMIN(video_size, (buf_end - buf) * 8));
 
             for (j = 0; j < avctx->height; j += 8)
                 for (i = 0; i < avctx->width; i += 8)