summaryrefslogtreecommitdiff
path: root/apps/codecs/raac.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/raac.c')
-rw-r--r--apps/codecs/raac.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/raac.c b/apps/codecs/raac.c
index 93972f557b..3fcdca24c9 100644
--- a/apps/codecs/raac.c
+++ b/apps/codecs/raac.c
@@ -31,8 +31,8 @@ CODEC_HEADER
31/* Global buffers to be used in the mdct synthesis. This way the arrays can 31/* Global buffers to be used in the mdct synthesis. This way the arrays can
32 * be moved to IRAM for some targets */ 32 * be moved to IRAM for some targets */
33#define GB_BUF_SIZE 1024 33#define GB_BUF_SIZE 1024
34ALIGN real_t gb_time_buffer[2][GB_BUF_SIZE] IBSS_ATTR_FAAD_LARGE_IRAM; 34static ALIGN real_t gb_time_buffer[2][GB_BUF_SIZE] IBSS_ATTR_FAAD_LARGE_IRAM;
35ALIGN real_t gb_fb_intermed[2][GB_BUF_SIZE] IBSS_ATTR_FAAD_LARGE_IRAM; 35static ALIGN real_t gb_fb_intermed[2][GB_BUF_SIZE] IBSS_ATTR_FAAD_LARGE_IRAM;
36 36
37 37
38static void init_rm(RMContext *rmctx) 38static void init_rm(RMContext *rmctx)
@@ -40,8 +40,8 @@ static void init_rm(RMContext *rmctx)
40 memcpy(rmctx, (void*)(( (intptr_t)ci->id3->id3v2buf + 3 ) &~ 3), sizeof(RMContext)); 40 memcpy(rmctx, (void*)(( (intptr_t)ci->id3->id3v2buf + 3 ) &~ 3), sizeof(RMContext));
41} 41}
42 42
43RMContext rmctx; 43static RMContext rmctx;
44RMPacket pkt; 44static RMPacket pkt;
45/* this is the codec entry point */ 45/* this is the codec entry point */
46enum codec_status codec_main(void) 46enum codec_status codec_main(void)
47{ 47{