Fix unused variable warnings

Previous commit does not build cleanly on Jenkins with the DWT/DCT
hybrid experiment enabled (--enable-dwtdcthybrid).

Change-Id: Ia67e8f59d17ef2d5200ec6b90dfe6711ed6835a5
diff --git a/vp9/encoder/vp9_dct.c b/vp9/encoder/vp9_dct.c
index 9f76730..bfde02c 100644
--- 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];