From a7b692a1df0a064350b6746f3ca207e1f288822c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 30 Nov 2008 14:21:40 +0100 Subject: shout_mp3: cast input buffer to int16_t* It's easier to work with an int16_t* pointer here. --- src/output/shout_mp3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/output') diff --git a/src/output/shout_mp3.c b/src/output/shout_mp3.c index c6b451953..5063470d7 100644 --- a/src/output/shout_mp3.c +++ b/src/output/shout_mp3.c @@ -131,6 +131,7 @@ static int shout_mp3_encoder_send_metadata(struct shout_data *sd, static int shout_mp3_encoder_encode(struct shout_data *sd, const char * chunk, size_t len) { + const int16_t *src = (const int16_t*)chunk; unsigned int i; int j; float (*lamebuf)[2]; @@ -148,8 +149,7 @@ static int shout_mp3_encoder_encode(struct shout_data *sd, for (i = 0; i < samples; i++) { for (j = 0; j < sd->audio_format.channels; j++) { - lamebuf[j][i] = *((const int16_t *) chunk); - chunk += bytes; + lamebuf[j][i] = *src++; } } -- cgit v1.2.3