]> granicus.if.org Git - libvpx/commitdiff
vpx_ve_predictor_4x4_c: quiet unused param warning
authorJames Zern <jzern@google.com>
Fri, 12 Feb 2016 02:31:40 +0000 (18:31 -0800)
committerJames Zern <jzern@google.com>
Fri, 12 Feb 2016 03:22:29 +0000 (19:22 -0800)
Change-Id: I62234260e2d2de94d602c6d8095c8f8124334052

vpx_dsp/intrapred.c

index 7c42f2a36e45bb19728b7bb55c070b8d7d0f889d..cc4a74bd260b1a4e9693f12d233d0678801c38f4 100644 (file)
@@ -326,6 +326,7 @@ void vpx_ve_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride,
   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);