ref: 76ac5b39375203ebc0111a5907abea40678fedf0
parent: 516db21c2c903a7d9b0b5fc156277e9bb538ade9
author: John Koleszar <jkoleszar@google.com>
date: Mon Jan 14 07:10:11 EST 2013
Fix unused variable warnings Previous commit does not build cleanly on Jenkins with the DWT/DCT hybrid experiment enabled (--enable-dwtdcthybrid). Change-Id: Ia67e8f59d17ef2d5200ec6b90dfe6711ed6835a5
--- a/vp9/encoder/vp9_dct.c
+++ b/vp9/encoder/vp9_dct.c
@@ -2136,8 +2136,6 @@
void vp9_short_fdct8x8_c_f(short *block, short *coefs, int pitch, int scale) {
int j1, i, j, k;
- static int count = 0;
- short x[8 * 8];
float b[8];
float b1[8];
float d[8][8];
--
⑨