Commit a7b692a1 authored by Max Kellermann's avatar Max Kellermann

shout_mp3: cast input buffer to int16_t*

It's easier to work with an int16_t* pointer here.
parent 655ba6a6
...@@ -131,6 +131,7 @@ static int shout_mp3_encoder_send_metadata(struct shout_data *sd, ...@@ -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, static int shout_mp3_encoder_encode(struct shout_data *sd,
const char * chunk, size_t len) const char * chunk, size_t len)
{ {
const int16_t *src = (const int16_t*)chunk;
unsigned int i; unsigned int i;
int j; int j;
float (*lamebuf)[2]; float (*lamebuf)[2];
...@@ -148,8 +149,7 @@ static int shout_mp3_encoder_encode(struct shout_data *sd, ...@@ -148,8 +149,7 @@ static int shout_mp3_encoder_encode(struct shout_data *sd,
for (i = 0; i < samples; i++) { for (i = 0; i < samples; i++) {
for (j = 0; j < sd->audio_format.channels; j++) { for (j = 0; j < sd->audio_format.channels; j++) {
lamebuf[j][i] = *((const int16_t *) chunk); lamebuf[j][i] = *src++;
chunk += bytes;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment