diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-18 07:59:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-18 07:59:07 +0000 |
commit | 8aeadb903a8b0dcf69f607134a9a5b807ea43458 (patch) | |
tree | eeabb97a6f0afe3a4422aa9a88761a91c4ca3607 /libavcodec/vp3.c | |
parent | d8278bab79ffc82f449522766fbd505dd64b6c1c (diff) | |
download | ffmpeg-8aeadb903a8b0dcf69f607134a9a5b807ea43458.tar.gz |
disabling buggy optimizations
Originally committed as revision 4268 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 9e9939abb9..e3a17817ab 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -1522,7 +1522,7 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) 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 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) 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 |