[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec vp3.c,1.53,1.54

Michael Niedermayer CVS michael
Wed May 18 09:59:09 CEST 2005


Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv621

Modified Files:
	vp3.c 
Log Message:
disabling buggy optimizations


Index: vp3.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/vp3.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- vp3.c	18 May 2005 00:11:49 -0000	1.53
+++ vp3.c	18 May 2005 07:59:07 -0000	1.54
@@ -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





More information about the ffmpeg-cvslog mailing list