summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/aiff_enc.c2
-rw-r--r--apps/codecs/wavpack_enc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/aiff_enc.c b/apps/codecs/aiff_enc.c
index 4f9e0e06e2..ba7e36e99e 100644
--- a/apps/codecs/aiff_enc.c
+++ b/apps/codecs/aiff_enc.c
@@ -323,7 +323,7 @@ static bool init_encoder(void)
323} /* init_encoder */ 323} /* init_encoder */
324 324
325/* main codec entry point */ 325/* main codec entry point */
326enum codec_status codec_start(void) 326enum codec_status codec_main(void)
327{ 327{
328 bool cpu_boosted; 328 bool cpu_boosted;
329 329
diff --git a/apps/codecs/wavpack_enc.c b/apps/codecs/wavpack_enc.c
index cee8c40615..1c48c7e64e 100644
--- a/apps/codecs/wavpack_enc.c
+++ b/apps/codecs/wavpack_enc.c
@@ -329,7 +329,7 @@ static bool init_encoder(void)
329 struct enc_inputs inputs; 329 struct enc_inputs inputs;
330 struct enc_parameters params; 330 struct enc_parameters params;
331 331
332 codec_init(ci); 332 codec_init();
333 333
334 if (ci->enc_get_inputs == NULL || 334 if (ci->enc_get_inputs == NULL ||
335 ci->enc_set_parameters == NULL || 335 ci->enc_set_parameters == NULL ||