vp9_postproc.c: unused parameter warning resolved

Change-Id: I6d77a7c775c0482fd1f9bb03ea6f336dd2973fa0
This commit is contained in:
Jim Bankoski 2014-08-22 12:08:35 -07:00 committed by Gerrit Code Review
parent d75da2e172
commit cebe2c8d88

View File

@ -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