]> granicus.if.org Git - libvpx/commitdiff
Fix unused variable warnings
authorJohn Koleszar <jkoleszar@google.com>
Mon, 14 Jan 2013 20:10:11 +0000 (12:10 -0800)
committerJohn Koleszar <jkoleszar@google.com>
Mon, 14 Jan 2013 20:12:43 +0000 (12:12 -0800)
Previous commit does not build cleanly on Jenkins with the DWT/DCT
hybrid experiment enabled (--enable-dwtdcthybrid).

Change-Id: Ia67e8f59d17ef2d5200ec6b90dfe6711ed6835a5

vp9/encoder/vp9_dct.c

index 9f76730618e5fb07abe73d07a0084f1f5603204e..bfde02ccbe841d4efa591965c4fcebe302c141f6 100644 (file)
@@ -2136,8 +2136,6 @@ static void vp9_short_fdct16x16_c_f(short *input, short *out, int pitch,
 
 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];