changeset 2724:546993e42dbc libavcodec

disable broken loop filter optimization melanson please test your optimizations before commiting!
author michael
date Sat, 21 May 2005 07:35:15 +0000
parents 5ae980827158
children 0131b4ae1fb0
files vp3.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/vp3.c	Sat May 21 05:20:52 2005 +0000
+++ b/vp3.c	Sat May 21 07:35:15 2005 +0000
@@ -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
 }