From: Deb Mukherjee Date: Wed, 11 Apr 2012 21:32:20 +0000 (-0700) Subject: Turning off interpolation filter selection X-Git-Tag: v1.3.0~1217^2~379^2~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=237718dcbda2331cd43095faa9c0ad731a0a6616;p=libvpx Turning off interpolation filter selection Turning off the interpolation filter selection based on edge proportion. This heuristics has not been working as well as expected and I have started a more rigorous investigation into this. We can turn this off for now since it is unnecessarily slowing things down. Rebase. Change-Id: Ic5958b2b3a35ec2d8eb73b6d81617ca8fbe07e74 --- diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c index 9e91dd938..e2fed8ed1 100644 --- a/vp8/encoder/onyx_if.c +++ b/vp8/encoder/onyx_if.c @@ -3022,7 +3022,7 @@ static void encode_frame_to_data_rate #if CONFIG_HIGH_PRECISION_MV || CONFIG_ENHANCED_INTERP if (cm->frame_type != KEY_FRAME) { - double e = compute_edge_pixel_proportion(cpi->Source); + double e = 0; //compute_edge_pixel_proportion(cpi->Source); #if CONFIG_HIGH_PRECISION_MV /* TODO: Decide this more intelligently */ xd->allow_high_precision_mv = (Q < HIGH_PRECISION_MV_QTHRESH);