diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-05 11:33:58 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-05 11:33:58 +0000 |
commit | d34865a5307e7bf91d986036797423975ac828b4 (patch) | |
tree | 41dcc1775f6cdc1d655f1eddadaabdf90c7ac22f /apps/plugin.h | |
parent | 6cf9d51b3374cdc436c45f165a10f607832126ee (diff) |
mp3buf renamed to audiobuf
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6252 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index ff37a7c46d..9fd9a9421c 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -280,7 +280,7 @@ struct plugin_api { struct tm* (*get_time)(void); int (*set_time)(const struct tm *tm); void* (*plugin_get_buffer)(int* buffer_size); - void* (*plugin_get_mp3_buffer)(int* buffer_size); + void* (*plugin_get_audio_buffer)(int* buffer_size); #ifndef SIMULATOR int (*plugin_register_timer)(int cycles, int prio, void (*timer_callback)(void)); void (*plugin_unregister_timer)(void); @@ -334,7 +334,7 @@ struct plugin_api { /* defined by the plugin loader (plugin.c) */ int plugin_load(const char* plugin, void* parameter); void* plugin_get_buffer(int *buffer_size); -void* plugin_get_mp3_buffer(int *buffer_size); +void* plugin_get_audio_buffer(int *buffer_size); int plugin_register_timer(int cycles, int prio, void (*timer_callback)(void)); void plugin_unregister_timer(void); void plugin_tsr(void (*exit_callback)(void)); |