Skip to content
Snippets Groups Projects
Commit 7cfe7fe5 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

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

Originally committed as revision 5771 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e278056f
Branches
Tags
No related merge requests found
...@@ -2783,9 +2783,11 @@ static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb) ...@@ -2783,9 +2783,11 @@ static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb)
if (!newqr) { if (!newqr) {
if (i > 0) if (i > 0)
get_bits(gb, 1); get_bits(gb, 1);
//FIXME this is simply incomplete
} }
else { else {
int qi = 0; int qi = 0;
//FIXME this is simply incomplete
skip_bits(gb, av_log2(matrices-1)+1); skip_bits(gb, av_log2(matrices-1)+1);
while (qi < 63) { while (qi < 63) {
qi += get_bits(gb, av_log2(63-qi)+1) + 1; qi += get_bits(gb, av_log2(63-qi)+1) + 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment