diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2012-03-04 14:44:43 -0500 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2012-03-04 14:50:47 -0500 |
| commit | d18a5cad7f002b2f67385e57118048ea3db185a6 (patch) | |
| tree | 61b8eafcf9d0197a8bc1f6c795c775f9170a4f64 /apps/plugin.h | |
| parent | 534117d1e0d01b78d0ab9040e64fbd88213cd805 (diff) | |
| download | rockbox-d18a5cad7f002b2f67385e57118048ea3db185a6.zip rockbox-d18a5cad7f002b2f67385e57118048ea3db185a6.tar.gz rockbox-d18a5cad7f002b2f67385e57118048ea3db185a6.tar.bz2 rockbox-d18a5cad7f002b2f67385e57118048ea3db185a6.tar.xz | |
Tweak paramters of mp3_play_data and callback.
Use generic void * and size_t and make mp3_play_data and its callback
agree on types. Use mp3_play_callback_t instead of prototyping
right in the function call (so it's not so messy to look at). Change
doesn't appear to require plugin API version increment.
Change-Id: Idcab2740ee316a2beb6e0a87b8f4934d9d6b3dd8
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 cd2440a..8123414 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -637,8 +637,8 @@ struct plugin_api { unsigned int band_setting); #endif /* AUDIOHW_HAVE_EQ */ #if (CONFIG_PLATFORM & PLATFORM_NATIVE) - void (*mp3_play_data)(const unsigned char* start, int size, - void (*get_more)(unsigned char** start, size_t* size)); + void (*mp3_play_data)(const void* start, size_t size, + mp3_play_callback_t get_more); void (*mp3_play_pause)(bool play); void (*mp3_play_stop)(void); bool (*mp3_is_playing)(void); |