summaryrefslogtreecommitdiff
path: root/apps/codecs/shorten.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/shorten.c')
-rw-r--r--apps/codecs/shorten.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/shorten.c b/apps/codecs/shorten.c
index ddc2f9a786..7595ca30c7 100644
--- a/apps/codecs/shorten.c
+++ b/apps/codecs/shorten.c
@@ -28,13 +28,13 @@ CODEC_HEADER
28#define IBSS_ATTR_SHORTEN_DECODED0 IBSS_ATTR 28#define IBSS_ATTR_SHORTEN_DECODED0 IBSS_ATTR
29#endif 29#endif
30 30
31int32_t decoded0[MAX_DECODE_SIZE] IBSS_ATTR_SHORTEN_DECODED0; 31static int32_t decoded0[MAX_DECODE_SIZE] IBSS_ATTR_SHORTEN_DECODED0;
32int32_t decoded1[MAX_DECODE_SIZE] IBSS_ATTR; 32static int32_t decoded1[MAX_DECODE_SIZE] IBSS_ATTR;
33 33
34int32_t offset0[MAX_OFFSET_SIZE] IBSS_ATTR; 34static int32_t offset0[MAX_OFFSET_SIZE] IBSS_ATTR;
35int32_t offset1[MAX_OFFSET_SIZE] IBSS_ATTR; 35static int32_t offset1[MAX_OFFSET_SIZE] IBSS_ATTR;
36 36
37int8_t ibuf[MAX_BUFFER_SIZE] IBSS_ATTR; 37static int8_t ibuf[MAX_BUFFER_SIZE] IBSS_ATTR;
38 38
39/* this is the codec entry point */ 39/* this is the codec entry point */
40enum codec_status codec_main(void) 40enum codec_status codec_main(void)