# HG changeset patch # User michael # Date 1116403147 0 # Node ID f858785d54eeb431378da5ac91a0c8e76aed44c7 # Parent 3817945001ceee0eeb5e5695d63ecbeb46da0766 disabling buggy optimizations diff -r 3817945001ce -r f858785d54ee vp3.c --- 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