diff options
author | Max Kellermann <max@duempel.org> | 2008-10-23 16:58:14 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-23 16:58:14 +0200 |
commit | bf5774edbd29ecf4d14119e04acf65d16dd762fa (patch) | |
tree | 2b8b0c7a1618162595e77fc086634c758941d20a /src | |
parent | 0078837a9760b8b5a14c87af0cb44a107462db7b (diff) | |
download | mpd-bf5774edbd29ecf4d14119e04acf65d16dd762fa.tar.gz mpd-bf5774edbd29ecf4d14119e04acf65d16dd762fa.tar.xz mpd-bf5774edbd29ecf4d14119e04acf65d16dd762fa.zip |
mp3: use sizeof(sample) instead of hard-coded "2"
We are going to convert the code to 24 bit; don't hard-code a sample
size of 2 bytes.
Diffstat (limited to 'src')
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 18eddf017..158a152cd 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -922,7 +922,8 @@ mp3Read(mp3DecodeData * data, ReplayGainInfo ** replayGainInfo) } max_samples = sizeof(data->outputBuffer) / - (2 * MAD_NCHANNELS(&(data->frame).header)); + sizeof(data->outputBuffer[0]) / + MAD_NCHANNELS(&(data->frame).header); while (i < pcm_length) { enum decoder_command cmd; @@ -940,7 +941,7 @@ mp3Read(mp3DecodeData * data, ReplayGainInfo ** replayGainInfo) cmd = decoder_data(decoder, data->inStream, data->inStream->seekable, data->outputBuffer, - 2 * num_samples, + sizeof(data->outputBuffer[0]) * num_samples, data->elapsedTime, data->bitRate / 1000, (replayGainInfo != NULL) ? *replayGainInfo : NULL); |