1
0
Fork 0
forked from len0rd/rockbox

General housekeeping: Make plugin buffer functions take size_t * instead of int * to match the parameter type of the buffer functions called in the core. Get rid of unsafe int * <==> size_t * casting. Use ssize_t where int was used and size_t where unsigned int was used in the buffer calls to not alter signedness in the plugins. No API version change since it should only be an issue for 64-bit sim builds.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13233 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2007-04-21 18:38:25 +00:00
parent cf6f4cf6f1
commit 26d242ae65
37 changed files with 52 additions and 51 deletions

View file

@ -667,7 +667,7 @@ int plugin_load(const char* plugin, void* parameter)
/* Returns a pointer to the portion of the plugin buffer that is not already
being used. If no plugin is loaded, returns the entire plugin buffer */
void* plugin_get_buffer(int* buffer_size)
void* plugin_get_buffer(size_t *buffer_size)
{
int buffer_pos;
@ -692,10 +692,10 @@ void* plugin_get_buffer(int* buffer_size)
Playback gets stopped, to avoid conflicts.
Talk buffer is stolen as well.
*/
void* plugin_get_audio_buffer(int* buffer_size)
void* plugin_get_audio_buffer(size_t *buffer_size)
{
#if CONFIG_CODEC == SWCODEC
return audio_get_buffer(true, (size_t *)buffer_size);
return audio_get_buffer(true, buffer_size);
#else
audio_stop();
talk_buffer_steal(); /* we use the mp3 buffer, need to tell */