From 76ac5b39375203ebc0111a5907abea40678fedf0 Mon Sep 17 00:00:00 2001 From: John Koleszar Date: Mon, 14 Jan 2013 12:10:11 -0800 Subject: [PATCH] Fix unused variable warnings 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 | 2 -- 1 file changed, 2 deletions(-) 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 @@ 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]; -- 2.7.4