summaryrefslogtreecommitdiff
path: root/apps/codecs/asap.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/asap.c')
-rw-r--r--apps/codecs/asap.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/codecs/asap.c b/apps/codecs/asap.c
index f12dc6a0c5..5d098eda15 100644
--- a/apps/codecs/asap.c
+++ b/apps/codecs/asap.c
@@ -29,6 +29,14 @@ CODEC_HEADER
29static byte samples[CHUNK_SIZE] IBSS_ATTR; /* The sample buffer */ 29static byte samples[CHUNK_SIZE] IBSS_ATTR; /* The sample buffer */
30static ASAP_State asap; /* asap codec state */ 30static ASAP_State asap; /* asap codec state */
31 31
32/* this is the codec entry point */
33enum codec_status codec_main(enum codec_entry_call_reason reason)
34{
35 /* Nothing to do */
36 return CODEC_OK;
37 (void)reason;
38}
39
32/* this is called for each file to process */ 40/* this is called for each file to process */
33enum codec_status codec_run(void) 41enum codec_status codec_run(void)
34{ 42{