changeset 2704:f858785d54ee libavcodec

disabling buggy optimizations
author michael
date Wed, 18 May 2005 07:59:07 +0000
parents 3817945001ce
children 2f9f51297218
files vp3.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/vp3.c	Wed May 18 00:11:49 2005 +0000
+++ b/vp3.c	Wed May 18 07:59:07 2005 +0000
@@ -1522,7 +1522,7 @@
                 case MODE_GOLDEN_MV:
                     /* all 6 fragments use the same motion vector */
                     if (coding_mode == 0) {
-#if 1
+#if 0
                         motion_x[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
                         motion_y[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
 #else
@@ -1554,7 +1554,7 @@
                     motion_x[4] = motion_y[4] = 0;
                     for (k = 0; k < 4; k++) {
                         if (coding_mode == 0) {
-#if 1
+#if 0
                             motion_x[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
                             motion_y[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
 #else