diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-06-06 13:20:17 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-02-07 18:27:21 +0100 |
commit | a25dac976a4478331e4db86d44c3db4456c93eff (patch) | |
tree | be0638f8ebcb9e00dfdad10a73d0fc5ccee03293 /libavcodec/g2meet.c | |
parent | 71a49fe25f2e4468fbbadbebef8d073b1b3cc1a5 (diff) | |
download | ffmpeg-a25dac976a4478331e4db86d44c3db4456c93eff.tar.gz |
Use bitstream_init8() where appropriate
Diffstat (limited to 'libavcodec/g2meet.c')
-rw-r--r-- | libavcodec/g2meet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index 4a7f5a3666..511ea534b8 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -298,7 +298,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, AV_INPUT_BUFFER_PADDING_SIZE); - bitstream_init(&bc, c->buf, unesc_size * 8); + bitstream_init8(&bc, c->buf, unesc_size); width = FFALIGN(width, 16); mb_w = width >> 4; @@ -1015,7 +1015,7 @@ static void kempf_restore_buf(const uint8_t *src, int len, int i, j, nb, col; int align_width = FFALIGN(width, 16); - bitstream_init(&bc, src, len * 8); + bitstream_init8(&bc, src, len); if (npal <= 2) nb = 1; else if (npal <= 4) nb = 2; |