summaryrefslogtreecommitdiff
path: root/apps/codecs/libatrac/atrac3.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libatrac/atrac3.c')
-rw-r--r--apps/codecs/libatrac/atrac3.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/codecs/libatrac/atrac3.c b/apps/codecs/libatrac/atrac3.c
index 3555f74cfb..fa0400a408 100644
--- a/apps/codecs/libatrac/atrac3.c
+++ b/apps/codecs/libatrac/atrac3.c
@@ -296,7 +296,8 @@ static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){
296} 296}
297 297
298 298
299static void init_atrac3_transforms() { 299static void init_atrac3_transforms(void)
300{
300 int32_t s; 301 int32_t s;
301 int i; 302 int i;
302 303
@@ -311,7 +312,7 @@ static void init_atrac3_transforms() {
311 qmf_window[i] = s; 312 qmf_window[i] = s;
312 qmf_window[47 - i] = s; 313 qmf_window[47 - i] = s;
313 } 314 }
314 } 315}
315 316
316 317
317/** 318/**