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/plugins | |
| 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/plugins')
| -rw-r--r-- | apps/plugins/chip8.c | 2 | ||||
| -rw-r--r-- | apps/plugins/metronome.c | 2 | ||||
| -rw-r--r-- | apps/plugins/video.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c index 0e1b9c5..b2faed5 100644 --- a/apps/plugins/chip8.c +++ b/apps/plugins/chip8.c @@ -1268,7 +1268,7 @@ static unsigned char beep[]={255, 111,181,184,144, 17,148, 21,101,166,227,100, 86, 85, 85, 85}; /* callback to request more mp3 data */ -static void callback(unsigned char** start, size_t* size) +static void callback(const void** start, size_t* size) { *start = beep; /* give it the same frame again */ *size = sizeof(beep); diff --git a/apps/plugins/metronome.c b/apps/plugins/metronome.c index 2974055..54af82f 100644 --- a/apps/plugins/metronome.c +++ b/apps/plugins/metronome.c @@ -683,7 +683,7 @@ int bpm_step_counter = 0; #define MET_IS_PLAYING rb->mp3_is_playing() #define MET_PLAY_STOP rb->mp3_play_stop() -static void callback(unsigned char** start, size_t* size) +static void callback(const void** start, size_t* size) { (void)start; /* unused parameter, avoid warning */ *size = 0; /* end of data */ diff --git a/apps/plugins/video.c b/apps/plugins/video.c index 9053ae7..6a66324 100644 --- a/apps/plugins/video.c +++ b/apps/plugins/video.c @@ -448,7 +448,7 @@ static void timer4_isr(void) /* ISR function to get more mp3 data */ -static void GetMoreMp3(unsigned char** start, size_t* size) +static void GetMoreMp3(const void** start, size_t* size) { int available; int advance; |