diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-01 13:41:03 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-01 13:41:03 +0000 |
commit | 674eaca5ef59625f90088da006eca4d10e2bea56 (patch) | |
tree | b0f02cec358ce1c506fb6d2256e2db059c7b6b6a /apps/plugin.c | |
parent | 88d5aab5a1098c5636584ddf06bd3012dc8c5b4c (diff) |
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.c | 5 |
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 @@ #include "mp3data.h" #include "powermgmt.h" #include "system.h" +#include "sound.h" #if (CONFIG_HWCODEC == MASNONE) #include "pcm_playback.h" #endif @@ -188,7 +189,7 @@ static const struct plugin_api rockbox_api = { memcmp, /* sound */ - mpeg_sound_set, + sound_set, #ifndef SIMULATOR mp3_play_data, mp3_play_pause, @@ -214,7 +215,7 @@ static const struct plugin_api rockbox_api = { mpeg_get_file_pos, mpeg_get_last_header, #if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) - mpeg_set_pitch, + sound_set_pitch, #endif #if !defined(SIMULATOR) && (CONFIG_HWCODEC != MASNONE) |