projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f0ebe8
)
avcodec/g2meet: Use init_get_bits8()
author
Michael Niedermayer
<michaelni@gmx.at>
Thu, 7 May 2015 20:47:56 +0000
(22:47 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Thu, 7 May 2015 20:50:23 +0000
(22:50 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/g2meet.c
patch
|
blob
|
history
diff --git
a/libavcodec/g2meet.c
b/libavcodec/g2meet.c
index
41faf7e
..
5c0b37d
100644
(file)
--- 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_bits
8(&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_bits
8(&gb, src, len
);
if (npal <= 2) nb = 1;
else if (npal <= 4) nb = 2;