summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-04-01 13:41:03 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-04-01 13:41:03 +0000
commit674eaca5ef59625f90088da006eca4d10e2bea56 (patch)
treeb0f02cec358ce1c506fb6d2256e2db059c7b6b6a /apps/plugin.c
parent88d5aab5a1098c5636584ddf06bd3012dc8c5b4c (diff)
downloadrockbox-674eaca5ef59625f90088da006eca4d10e2bea56.tar.gz
rockbox-674eaca5ef59625f90088da006eca4d10e2bea56.zip
Moved the mpeg_sound_xxx() functions to sound.c and renamed them to sound_xxx()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6240 a1c6a512-1295-4272-9138-f99709370657
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)