mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-10 14:34:28 +08:00
10l: init_get_bits want size in bits, not bytes
Originally committed as revision 11099 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -138,7 +138,7 @@ static int vp6_parse_header(vp56_context_t *s, uint8_t *buf, int buf_size,
|
|||||||
buf_size -= coeff_offset;
|
buf_size -= coeff_offset;
|
||||||
if (s->use_huffman) {
|
if (s->use_huffman) {
|
||||||
s->parse_coeff = vp6_parse_coeff_huffman;
|
s->parse_coeff = vp6_parse_coeff_huffman;
|
||||||
init_get_bits(&s->gb, buf, buf_size);
|
init_get_bits(&s->gb, buf, buf_size<<3);
|
||||||
} else {
|
} else {
|
||||||
vp56_init_range_decoder(&s->cc, buf, buf_size);
|
vp56_init_range_decoder(&s->cc, buf, buf_size);
|
||||||
s->ccp = &s->cc;
|
s->ccp = &s->cc;
|
||||||
|
Reference in New Issue
Block a user