diff options
author | Dan Everton <dan@iocaine.org> | 2006-02-23 21:42:53 +0000 |
---|---|---|
committer | Dan Everton <dan@iocaine.org> | 2006-02-23 21:42:53 +0000 |
commit | 581b0f1d437ee90952e199cd602e2d1ea76e9555 (patch) | |
tree | 6d74d3e5a8bef1ed7e78d6359ef38371f29c9e43 /uisimulator/sdl/sound.c | |
parent | b1c5676927a4122bc4666205559ce80be679a7ea (diff) | |
download | rockbox-581b0f1d437ee90952e199cd602e2d1ea76e9555.tar.gz rockbox-581b0f1d437ee90952e199cd602e2d1ea76e9555.zip |
Remove two unused variables and fix a warning in the sim peak meter function.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8818 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/sdl/sound.c')
-rw-r--r-- | uisimulator/sdl/sound.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/uisimulator/sdl/sound.c b/uisimulator/sdl/sound.c index ae9d5f9053..d23bcc8094 100644 --- a/uisimulator/sdl/sound.c +++ b/uisimulator/sdl/sound.c | |||
@@ -157,8 +157,8 @@ bool pcm_is_playing(void) | |||
157 | 157 | ||
158 | void pcm_calculate_peaks(int *left, int *right) | 158 | void pcm_calculate_peaks(int *left, int *right) |
159 | { | 159 | { |
160 | long samples = pcm_data_size / 4; | 160 | long samples = (long) pcm_data_size / 4; |
161 | short *addr = pcm_data; | 161 | short *addr = (short *) pcm_data; |
162 | 162 | ||
163 | if (samples > PEAK_SAMPLES) | 163 | if (samples > PEAK_SAMPLES) |
164 | samples = PEAK_SAMPLES; | 164 | samples = PEAK_SAMPLES; |
@@ -207,9 +207,6 @@ void pcm_calculate_peaks(int *left, int *right) | |||
207 | } | 207 | } |
208 | } | 208 | } |
209 | 209 | ||
210 | Uint8 overflow[8192]; | ||
211 | Uint32 overflow_amount = 0; | ||
212 | |||
213 | void sdl_audio_callback(void *udata, Uint8 *stream, int len) | 210 | void sdl_audio_callback(void *udata, Uint8 *stream, int len) |
214 | { | 211 | { |
215 | Uint32 pcm_data_played, need_to_play; | 212 | Uint32 pcm_data_played, need_to_play; |