summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index b47dd951ea..c12a996408 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -572,8 +572,19 @@ static const struct plugin_api rockbox_api = {
572 dsp_process, 572 dsp_process,
573 dsp_input_count, 573 dsp_input_count,
574 dsp_output_count, 574 dsp_output_count,
575#endif /* CONFIG_CODEC == SWCODEC */
576 575
576 mixer_channel_status,
577 mixer_channel_get_buffer,
578 mixer_channel_calculate_peaks,
579 mixer_channel_play_data,
580 mixer_channel_play_pause,
581 mixer_channel_stop,
582 mixer_channel_set_amplitude,
583 mixer_channel_get_bytes_waiting,
584
585 system_sound_play,
586 keyclick_click,
587#endif
577 /* playback control */ 588 /* playback control */
578 playlist_amount, 589 playlist_amount,
579 playlist_resume, 590 playlist_resume,
@@ -778,18 +789,6 @@ static const struct plugin_api rockbox_api = {
778 789
779 /* new stuff at the end, sort into place next time 790 /* new stuff at the end, sort into place next time
780 the API gets incompatible */ 791 the API gets incompatible */
781#if CONFIG_CODEC == SWCODEC
782 mixer_channel_status,
783 mixer_channel_get_buffer,
784 mixer_channel_calculate_peaks,
785 mixer_channel_play_data,
786 mixer_channel_play_pause,
787 mixer_channel_stop,
788 mixer_channel_set_amplitude,
789 mixer_channel_get_bytes_waiting,
790 system_sound_play,
791 keyclick_click,
792#endif
793}; 792};
794 793
795int plugin_load(const char* plugin, const void* parameter) 794int plugin_load(const char* plugin, const void* parameter)