ref: 2404332c1b731c70a21e1e2301cbffe4a1a35d9e
parent: 45658120321d7bdb61d71384464b4bb4886641f7
parent: 208aa6158b64640d8f9ce08e73109cb24846ec15
author: Jingning Han <[email protected]>
date: Thu Apr 9 10:45:19 EDT 2015
Merge "Remove get_nonrd_var_based_fixed_partition function"
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -165,21 +165,6 @@
return BLOCK_8X8;
}
-static BLOCK_SIZE get_nonrd_var_based_fixed_partition(VP9_COMP *cpi,
- MACROBLOCK *x,
- int mi_row,
- int mi_col) {
- unsigned int var = get_sby_perpixel_diff_variance(cpi, &x->plane[0].src,
- mi_row, mi_col,
- BLOCK_64X64);
- if (var < 4)
- return BLOCK_64X64;
- else if (var < 10)
- return BLOCK_32X32;
- else
- return BLOCK_16X16;
-}
-
// Lighter version of set_offsets that only sets the mode info
// pointers.
static INLINE void set_mode_info_offsets(VP9_COMMON *const cm,