diff --git a/vp9/common/vp9_postproc.c b/vp9/common/vp9_postproc.c index abda4e68276b0712185c9b3d78ef41fd0c100565..e4e6ce7826ed12ebf1f0f3acf15632a7b44255c5 100644 --- a/vp9/common/vp9_postproc.c +++ b/vp9/common/vp9_postproc.c @@ -366,6 +366,9 @@ void vp9_plane_add_noise_c(uint8_t *start, char *noise, 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