summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2009-08-19 13:28:19 +0000
committerJeffrey Goode <jeffg7@gmail.com>2009-08-19 13:28:19 +0000
commite6b53c7c90775f287e9afa20b3e32704b53bf87c (patch)
tree89151782417dc2514660be8a0bed5ed6bff42d5f /apps/plugin.c
parent23e534decfcb4e8ea1bae2181f9c5c113eaa07d3 (diff)
downloadrockbox-e6b53c7c90775f287e9afa20b3e32704b53bf87c.tar.gz
rockbox-e6b53c7c90775f287e9afa20b3e32704b53bf87c.zip
Resort, upnumber plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22427 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 8c1ecb8394..a497ad0456 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -467,6 +467,7 @@ static const struct plugin_api rockbox_api = {
467 dsp_process, 467 dsp_process,
468 dsp_input_count, 468 dsp_input_count,
469 dsp_output_count, 469 dsp_output_count,
470 dsp_flush_limiter_buffer,
470#endif /* CONFIG_CODEC == SWCODEC */ 471#endif /* CONFIG_CODEC == SWCODEC */
471 472
472 /* playback control */ 473 /* playback control */
@@ -668,9 +669,6 @@ static const struct plugin_api rockbox_api = {
668 appsversion, 669 appsversion,
669 /* new stuff at the end, sort into place next time 670 /* new stuff at the end, sort into place next time
670 the API gets incompatible */ 671 the API gets incompatible */
671#if CONFIG_CODEC == SWCODEC
672 dsp_flush_limiter_buffer,
673#endif
674}; 672};
675 673
676int plugin_load(const char* plugin, const void* parameter) 674int plugin_load(const char* plugin, const void* parameter)