aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-03-27 20:36:03 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-03-27 20:36:03 +0100
commite38438a62bcfd8399cbf6ed3cee8e50026635154 (patch)
tree5f2534e4f2ba6e79bbfa43606b01de47639ca689
parent41c3c609e857c8943575581022cd1c0030c3b5e7 (diff)
downloadtoolame-dab-e38438a62bcfd8399cbf6ed3cee8e50026635154.tar.gz
toolame-dab-e38438a62bcfd8399cbf6ed3cee8e50026635154.tar.bz2
toolame-dab-e38438a62bcfd8399cbf6ed3cee8e50026635154.zip
Remove small compilation warning
-rw-r--r--toolame.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/toolame.c b/toolame.c
index 1522e9d..4eaee4d 100644
--- a/toolame.c
+++ b/toolame.c
@@ -96,8 +96,10 @@ int main (int argc, char **argv)
SBS *sb_sample;
typedef double JSBS[3][SCALE_BLOCK][SBLIMIT];
JSBS *j_sample;
+#ifdef REFERENCECODE
typedef double IN[2][HAN_SIZE];
IN *win_que;
+#endif
typedef unsigned int SUB[2][3][SCALE_BLOCK][SBLIMIT];
SUB *subband;
@@ -128,7 +130,9 @@ int main (int argc, char **argv)
sb_sample = (SBS *) mem_alloc (sizeof (SBS), "sb_sample");
j_sample = (JSBS *) mem_alloc (sizeof (JSBS), "j_sample");
+#ifdef REFERENCECODE
win_que = (IN *) mem_alloc (sizeof (IN), "Win_que");
+#endif
subband = (SUB *) mem_alloc (sizeof (SUB), "subband");
win_buf = (short **) mem_alloc (sizeof (short *) * 2, "win_buf");