From 062e6c18869ddd22b82b8dbf7bbd6a953fe49dbe Mon Sep 17 00:00:00 2001 From: Frank Galligan Date: Wed, 28 Jul 2010 17:25:09 -0400 Subject: [PATCH] Removed two unused global variables. Removed the global variables vp8_an and vp8_cd. vp8_an was causing problems because it was increasing the .bss by 1572864 bytes. Change-Id: I6c12e294133c7fb6e770c0e4536d8287a5720a87 --- vp8/common/postproc.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/vp8/common/postproc.c b/vp8/common/postproc.c index 1670a1a..6488921 100644 --- a/vp8/common/postproc.c +++ b/vp8/common/postproc.c @@ -330,13 +330,6 @@ void vp8_de_noise(YV12_BUFFER_CONFIG *source, } - -//Notes: It is better to change CHAR to unsigned or signed to -//avoid error on ARM platform. -char vp8_an[8][64][3072]; -int vp8_cd[8][64]; - - double vp8_gaussian(double sigma, double mu, double x) { return 1 / (sigma * sqrt(2.0 * 3.14159265)) * -- 2.7.4