[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec vp3.c,1.64,1.65
Michael Niedermayer CVS
michael
Sat May 21 09:35:17 CEST 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv7020
Modified Files:
vp3.c
Log Message:
disable broken loop filter optimization
melanson please test your optimizations before commiting!
Index: vp3.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/vp3.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- vp3.c 21 May 2005 05:20:52 -0000 1.64
+++ vp3.c 21 May 2005 07:35:15 -0000 1.65
@@ -2395,7 +2395,7 @@
stride, 8);
}
-
+#if 0
/* do not perform left edge filter for left columns frags */
if ((x > 0) &&
(s->all_fragments[i].coding_method != MODE_COPY)) {
@@ -2433,6 +2433,7 @@
output_plane + s->all_fragments[i + fragment_width].first_pixel + stride,
stride, bounding_values);
}
+#endif
}
}
}
@@ -3254,7 +3255,7 @@
STOP_TIMER("render_fragments")}
{START_TIMER
-// apply_loop_filter(s);
+ apply_loop_filter(s);
STOP_TIMER("apply_loop_filter")}
#if KEYFRAMES_ONLY
}
More information about the ffmpeg-cvslog
mailing list