shithub: libvpx

Download patch

ref: 237718dcbda2331cd43095faa9c0ad731a0a6616
parent: 636b2f385e81cf9a8d5d4d78af90a763796d59c4
author: Deb Mukherjee <debargha@google.com>
date: Wed Apr 11 10:32:20 EDT 2012

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

--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -3022,7 +3022,7 @@
 #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);
--