Commit 101c2b84 authored by michael's avatar michael

some fixmes if someone ever wants to implement theora support correctly ...


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5771 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 92c67bb6
......@@ -2783,9 +2783,11 @@ static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb)
if (!newqr) {
if (i > 0)
get_bits(gb, 1);
//FIXME this is simply incomplete
}
else {
int qi = 0;
//FIXME this is simply incomplete
skip_bits(gb, av_log2(matrices-1)+1);
while (qi < 63) {
qi += get_bits(gb, av_log2(63-qi)+1) + 1;
......
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