summaryrefslogtreecommitdiff
path: root/apps/codecs/wmapro.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/wmapro.c')
-rw-r--r--apps/codecs/wmapro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/wmapro.c b/apps/codecs/wmapro.c
index e929c1f428..62759d0d1d 100644
--- a/apps/codecs/wmapro.c
+++ b/apps/codecs/wmapro.c
@@ -28,7 +28,7 @@ CODEC_HEADER
28#define MAXSAMPLES (1L << 12) /* Max number of samples in a wma pro subframe */ 28#define MAXSAMPLES (1L << 12) /* Max number of samples in a wma pro subframe */
29#define MAXCHANNELS 8 29#define MAXCHANNELS 8
30#define BUFSIZE MAXCHANNELS * MAXSAMPLES 30#define BUFSIZE MAXCHANNELS * MAXSAMPLES
31int32_t decoded[BUFSIZE]; 31static int32_t decoded[BUFSIZE];
32 32
33/* this is the codec entry point */ 33/* this is the codec entry point */
34enum codec_status codec_main(void) 34enum codec_status codec_main(void)