Commit 312fded4 authored by aurel's avatar aurel

10l: init_get_bits want size in bits, not bytes

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11099 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ddfc2eaf
......@@ -138,7 +138,7 @@ static int vp6_parse_header(vp56_context_t *s, uint8_t *buf, int buf_size,
buf_size -= coeff_offset;
if (s->use_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 {
vp56_init_range_decoder(&s->cc, buf, buf_size);
s->ccp = &s->cc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment