Commit a65b2512 authored by michael's avatar michael

disable broken loop filter optimization

melanson please test your optimizations before commiting!


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4292 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2c98c776
...@@ -2395,7 +2395,7 @@ static void render_slice(Vp3DecodeContext *s, int slice) ...@@ -2395,7 +2395,7 @@ static void render_slice(Vp3DecodeContext *s, int slice)
stride, 8); stride, 8);
} }
#if 0
/* do not perform left edge filter for left columns frags */ /* do not perform left edge filter for left columns frags */
if ((x > 0) && if ((x > 0) &&
(s->all_fragments[i].coding_method != MODE_COPY)) { (s->all_fragments[i].coding_method != MODE_COPY)) {
...@@ -2433,6 +2433,7 @@ static void render_slice(Vp3DecodeContext *s, int slice) ...@@ -2433,6 +2433,7 @@ static void render_slice(Vp3DecodeContext *s, int slice)
output_plane + s->all_fragments[i + fragment_width].first_pixel + stride, output_plane + s->all_fragments[i + fragment_width].first_pixel + stride,
stride, bounding_values); stride, bounding_values);
} }
#endif
} }
} }
} }
...@@ -3254,7 +3255,7 @@ if (!s->keyframe) { ...@@ -3254,7 +3255,7 @@ if (!s->keyframe) {
STOP_TIMER("render_fragments")} STOP_TIMER("render_fragments")}
{START_TIMER {START_TIMER
// apply_loop_filter(s); apply_loop_filter(s);
STOP_TIMER("apply_loop_filter")} STOP_TIMER("apply_loop_filter")}
#if KEYFRAMES_ONLY #if KEYFRAMES_ONLY
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment