summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index 5a47e720e0..38851a5c7d 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -63,6 +63,9 @@
63#if (CONFIG_HWCODEC == MASNONE) 63#if (CONFIG_HWCODEC == MASNONE)
64#include "pcm_playback.h" 64#include "pcm_playback.h"
65#endif 65#endif
66#if defined(IRIVER_H100) && !defined(SIMULATOR)
67#include "pcm_record.h"
68#endif
66 69
67#ifdef CONFIG_TUNER 70#ifdef CONFIG_TUNER
68#include "radio.h" 71#include "radio.h"
@@ -293,6 +296,9 @@ void init(void)
293#if (CONFIG_HWCODEC == MASNONE) 296#if (CONFIG_HWCODEC == MASNONE)
294 pcm_init(); 297 pcm_init();
295#endif 298#endif
299#if defined(IRIVER_H100) && !defined(SIMULATOR)
300 pcm_init_recording();
301#endif
296#ifdef HAVE_CHARGING 302#ifdef HAVE_CHARGING
297 car_adapter_mode_init(); 303 car_adapter_mode_init();
298#endif 304#endif