summaryrefslogtreecommitdiff
path: root/libavcodec/vp3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-05-21 07:35:15 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-05-21 07:35:15 +0000
commit720537282b6878d64812c2d89579713e22bc167d (patch)
treea28749980688b6971d35f7614e5ccc83295f57c5 /libavcodec/vp3.c
parentf44b08a5a0ee46b52a9a608cbf2d075eab93db61 (diff)
disable broken loop filter optimization
melanson please test your optimizations before commiting! Originally committed as revision 4292 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 1fba635c3d..00361ced8b 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -2395,7 +2395,7 @@ static void render_slice(Vp3DecodeContext *s, int slice)
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 @@ static void render_slice(Vp3DecodeContext *s, int slice)
output_plane + s->all_fragments[i + fragment_width].first_pixel + stride,
stride, bounding_values);
}
+#endif
}
}
}
@@ -3254,7 +3255,7 @@ if (!s->keyframe) {
STOP_TIMER("render_fragments")}
{START_TIMER
-// apply_loop_filter(s);
+ apply_loop_filter(s);
STOP_TIMER("apply_loop_filter")}
#if KEYFRAMES_ONLY
}