summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-07-05 22:54:02 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-07-05 22:54:02 -0400
commit91ff99c2adc6787c75346c882435657db3949c60 (patch)
treea955d24c350ef224553af18a65d42b4bac5c7851 /apps
parent74f90bdb187be0388f18d314206f6d39e31f42db (diff)
downloadrockbox-91ff99c2adc6787c75346c882435657db3949c60.tar.gz
rockbox-91ff99c2adc6787c75346c882435657db3949c60.zip
...and mixer_set/get_frequency is SWCODEC only! :-)
Change-Id: I6badf687ef330abf79f2e1a809d8b2f93ba4e911
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index a5cdfc3d8a..658064c53e 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -798,8 +798,10 @@ static const struct plugin_api rockbox_api = {
798 /* new stuff at the end, sort into place next time 798 /* new stuff at the end, sort into place next time
799 the API gets incompatible */ 799 the API gets incompatible */
800 800
801#if CONFIG_CODEC == SWCODEC
801 mixer_set_frequency, 802 mixer_set_frequency,
802 mixer_get_frequency, 803 mixer_get_frequency,
804#endif
803}; 805};
804 806
805int plugin_load(const char* plugin, const void* parameter) 807int plugin_load(const char* plugin, const void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index f926b3428d..874b9b4a56 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -970,8 +970,10 @@ struct plugin_api {
970 /* new stuff at the end, sort into place next time 970 /* new stuff at the end, sort into place next time
971 the API gets incompatible */ 971 the API gets incompatible */
972 972
973#if CONFIG_CODEC == SWCODEC
973 void (*mixer_set_frequency)(unsigned int samplerate); 974 void (*mixer_set_frequency)(unsigned int samplerate);
974 unsigned int (*mixer_get_frequency)(void); 975 unsigned int (*mixer_get_frequency)(void);
976#endif
975}; 977};
976 978
977/* plugin header */ 979/* plugin header */