shithub: libvpx

Download patch

ref: e711617c10cc644678acb41e0219362f56152360
parent: 79bb2cddd38452c00b6f2f43c6665f3a25af7b28
parent: cebe2c8d88bd9d8c5e06bc98275f84b25a2f87ad
author: Jim Bankoski <[email protected]>
date: Mon Aug 25 02:39:12 EDT 2014

Merge "vp9_postproc.c: unused parameter warning resolved"

--- a/vp9/common/vp9_postproc.c
+++ b/vp9/common/vp9_postproc.c
@@ -366,6 +366,9 @@
                            unsigned int width, unsigned int height, int pitch) {
   unsigned int i, j;
 
+  // TODO(jbb): why does simd code use both but c doesn't,  normalize and
+  // fix..
+  (void) bothclamp;
   for (i = 0; i < height; i++) {
     uint8_t *pos = start + i * pitch;
     char  *ref = (char *)(noise + (rand() & 0xff));  // NOLINT