summaryrefslogtreecommitdiff
path: root/libavcodec/vp3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-07-16 20:47:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-07-16 20:47:48 +0000
commit7cfe7fe5e78f9f1ce1e707a0385188dfa44ba6ce (patch)
tree7d6cd1bb39ed6b733bd9ee8eba25fa6053a57165 /libavcodec/vp3.c
parente278056fbad7405fc47901faea7de98db003a0fa (diff)
some fixmes if someone ever wants to implement theora support correctly ...
Originally committed as revision 5771 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 1b9eac01f2..5b689f6384 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -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;