ref: 26c6fbdcdaa0bc0507c2031611492a0291aa5e42
parent: 34d12d116051e4e9c877b601f9add06ad725f6e3
author: James Zern <jzern@google.com>
date: Thu Feb 11 13:31:40 EST 2016
vpx_ve_predictor_4x4_c: quiet unused param warning Change-Id: I62234260e2d2de94d602c6d8095c8f8124334052
--- a/vpx_dsp/intrapred.c
+++ b/vpx_dsp/intrapred.c
@@ -326,6 +326,7 @@
const int K = above[2];
const int L = above[3];
const int M = above[4];
+ (void)left;
dst[0] = AVG3(H, I, J);
dst[1] = AVG3(I, J, K);