summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 35f03703ba..2031f0d450 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -44,6 +44,7 @@
44#include "mp3data.h" 44#include "mp3data.h"
45#include "powermgmt.h" 45#include "powermgmt.h"
46#include "system.h" 46#include "system.h"
47#include "sound.h"
47#if (CONFIG_HWCODEC == MASNONE) 48#if (CONFIG_HWCODEC == MASNONE)
48#include "pcm_playback.h" 49#include "pcm_playback.h"
49#endif 50#endif
@@ -188,7 +189,7 @@ static const struct plugin_api rockbox_api = {
188 memcmp, 189 memcmp,
189 190
190 /* sound */ 191 /* sound */
191 mpeg_sound_set, 192 sound_set,
192#ifndef SIMULATOR 193#ifndef SIMULATOR
193 mp3_play_data, 194 mp3_play_data,
194 mp3_play_pause, 195 mp3_play_pause,
@@ -214,7 +215,7 @@ static const struct plugin_api rockbox_api = {
214 mpeg_get_file_pos, 215 mpeg_get_file_pos,
215 mpeg_get_last_header, 216 mpeg_get_last_header,
216#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) 217#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F)
217 mpeg_set_pitch, 218 sound_set_pitch,
218#endif 219#endif
219 220
220#if !defined(SIMULATOR) && (CONFIG_HWCODEC != MASNONE) 221#if !defined(SIMULATOR) && (CONFIG_HWCODEC != MASNONE)