From 04b100b23eaa0c4ab179129be82d52fee9fb256f Mon Sep 17 00:00:00 2001 From: Deb Mukherjee Date: Wed, 27 Aug 2014 14:06:30 -0700 Subject: Updates vp9_pattern search to return integer sads Updates the vp9_pattern_search function to return integer one-away neighbors' sad values, for subsequent use in speeding up the sub-pel search. Also, removes code for the do_refine option which is not being used currently. Updates the integer and subpel functions to pass in a 5-element sad list for output or input. A new pruned sub-pel search algorithm is implemented that uses the sad returned from the integer pel search. But it is not deployed yet. Change-Id: Ifa9f5ad024b5b660570366d2bd900343e1891520 --- vp9/encoder/vp9_speed_features.h | 1 + 1 file changed, 1 insertion(+) (limited to 'vp9/encoder/vp9_speed_features.h') diff --git a/vp9/encoder/vp9_speed_features.h b/vp9/encoder/vp9_speed_features.h index bad956da5..5679025a6 100644 --- a/vp9/encoder/vp9_speed_features.h +++ b/vp9/encoder/vp9_speed_features.h @@ -40,6 +40,7 @@ typedef enum { typedef enum { SUBPEL_TREE = 0, + SUBPEL_TREE_PRUNED = 1, // Other methods to come } SUBPEL_SEARCH_METHODS; -- cgit v1.2.3