[FFmpeg-cvslog] avcodec/g2meet: Use init_get_bits8()

Michael Niedermayer git at videolan.org
Thu May 7 23:03:46 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu May  7 22:47:56 2015 +0200| [43e94d5af48b74d45f86621b3f432f797696e98f] | committer: Michael Niedermayer

avcodec/g2meet: Use init_get_bits8()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=43e94d5af48b74d45f86621b3f432f797696e98f
---

 libavcodec/g2meet.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c
index 41faf7e..5c0b37d 100644
--- a/libavcodec/g2meet.c
+++ b/libavcodec/g2meet.c
@@ -253,7 +253,7 @@ static int jpg_decode_data(JPGContext *c, int width, int height,
         return ret;
     jpg_unescape(src, src_size, c->buf, &unesc_size);
     memset(c->buf + unesc_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
-    init_get_bits(&gb, c->buf, unesc_size * 8);
+    init_get_bits8(&gb, c->buf, unesc_size);
 
     width = FFALIGN(width, 16);
     mb_w  =  width        >> 4;
@@ -326,7 +326,7 @@ static void kempf_restore_buf(const uint8_t *src, int len,
     GetBitContext gb;
     int i, j, nb, col;
 
-    init_get_bits(&gb, src, len * 8);
+    init_get_bits8(&gb, src, len);
 
     if (npal <= 2)       nb = 1;
     else if (npal <= 4)  nb = 2;



More information about the ffmpeg-cvslog mailing list