Merge "Silence unused parameter warnings."

This commit is contained in:
Paul Wilkins 2014-05-15 02:39:22 -07:00 committed by Gerrit Code Review
commit 8deb0e182b

View File

@ -884,6 +884,10 @@ int vp9_full_range_search_c(const MACROBLOCK *x,
int r, c, i;
int start_col, end_col, start_row, end_row;
// The cfg and search_param parameters are not used in this search variant
(void)cfg;
(void)search_param;
clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max);
*best_mv = *ref_mv;
*num00 = 11;