comparison vp3.c @ 3485:f574901e49d2 libavcodec

some fixmes if someone ever wants to implement theora support correctly ...
author michael
date Sun, 16 Jul 2006 20:47:48 +0000
parents 9a70c6d3c653
children 5ee0e924432f
comparison
equal deleted inserted replaced
3484:9a70c6d3c653 3485:f574901e49d2
2781 else 2781 else
2782 newqr = 1; 2782 newqr = 1;
2783 if (!newqr) { 2783 if (!newqr) {
2784 if (i > 0) 2784 if (i > 0)
2785 get_bits(gb, 1); 2785 get_bits(gb, 1);
2786 //FIXME this is simply incomplete
2786 } 2787 }
2787 else { 2788 else {
2788 int qi = 0; 2789 int qi = 0;
2790 //FIXME this is simply incomplete
2789 skip_bits(gb, av_log2(matrices-1)+1); 2791 skip_bits(gb, av_log2(matrices-1)+1);
2790 while (qi < 63) { 2792 while (qi < 63) {
2791 qi += get_bits(gb, av_log2(63-qi)+1) + 1; 2793 qi += get_bits(gb, av_log2(63-qi)+1) + 1;
2792 skip_bits(gb, av_log2(matrices-1)+1); 2794 skip_bits(gb, av_log2(matrices-1)+1);
2793 } 2795 }