# HG changeset patch # User melanson # Date 1116436499 0 # Node ID a119d4eb53d70265513166fbaa12206b4b680556 # Parent 97c135899d7da695d1a011eb3674309d1ecf0937 fix 4MV MC and reinstate new MC VLC diff -r 97c135899d7d -r a119d4eb53d7 vp3.c --- a/vp3.c Wed May 18 14:05:17 2005 +0000 +++ b/vp3.c Wed May 18 17:14:59 2005 +0000 @@ -1516,7 +1516,7 @@ case MODE_GOLDEN_MV: /* all 6 fragments use the same motion vector */ if (coding_mode == 0) { -#if 0 +#if 1 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 @@ -1548,9 +1548,9 @@ motion_x[4] = motion_y[4] = 0; for (k = 0; k < 4; k++) { if (coding_mode == 0) { -#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)]; +#if 1 + motion_x[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; + motion_y[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; #else motion_x[k] = get_motion_vector_vlc(gb); motion_y[k] = get_motion_vector_vlc(gb);