summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-12-14 23:15:45 +0100
committerThomas Martitz <kugel@rockbox.org>2013-12-14 23:15:45 +0100
commit1fc19042f72e9171b79c5a847cbce0c8939888c5 (patch)
tree4a5edc88e4533a7cfa66a5fd539433bea2689d2d /apps/plugin.c
parent50eb528bc1f9d2f7b7260eff8b85a5ed5b96e679 (diff)
downloadrockbox-1fc19042f72e9171b79c5a847cbce0c8939888c5.tar.gz
rockbox-1fc19042f72e9171b79c5a847cbce0c8939888c5.zip
Bump plugin api and sort.
Change-Id: I8b8ab58abbd40726326b8b47bd6bbb07580b5ce4
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 62f9dd7558..18c49f4c27 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -588,6 +588,8 @@ static const struct plugin_api rockbox_api = {
588 mixer_channel_set_amplitude, 588 mixer_channel_set_amplitude,
589 mixer_channel_get_bytes_waiting, 589 mixer_channel_get_bytes_waiting,
590 mixer_channel_set_buffer_hook, 590 mixer_channel_set_buffer_hook,
591 mixer_set_frequency,
592 mixer_get_frequency,
591 593
592 system_sound_play, 594 system_sound_play,
593 keyclick_click, 595 keyclick_click,
@@ -797,11 +799,6 @@ static const struct plugin_api rockbox_api = {
797 799
798 /* new stuff at the end, sort into place next time 800 /* new stuff at the end, sort into place next time
799 the API gets incompatible */ 801 the API gets incompatible */
800
801#if CONFIG_CODEC == SWCODEC
802 mixer_set_frequency,
803 mixer_get_frequency,
804#endif
805}; 802};
806 803
807int plugin_load(const char* plugin, const void* parameter) 804int plugin_load(const char* plugin, const void* parameter)