ref: 8deb0e182b138743a1c9dbd12b709fdaa18ce00b
parent: 33aeb84c3f212d4b1bd6aa3bfe47e96ac8875397
parent: 82cf10702de9a9142c49150d62134fbc572108f9
author: Paul Wilkins <paulwilkins@google.com>
date: Wed May 14 22:39:22 EDT 2014
Merge "Silence unused parameter warnings."
--- a/vp9/encoder/vp9_mcomp.c
+++ b/vp9/encoder/vp9_mcomp.c
@@ -884,6 +884,10 @@
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;
--
⑨