From e38438a62bcfd8399cbf6ed3cee8e50026635154 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Thu, 27 Mar 2014 20:36:03 +0100 Subject: Remove small compilation warning --- toolame.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'toolame.c') 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"); -- cgit v1.2.3