diff options
author | Max Kellermann <max@duempel.org> | 2008-09-23 23:59:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-23 23:59:54 +0200 |
commit | 128d8c7c15c0713cfccc42dfeea9b0cd9ed11d14 (patch) | |
tree | 92bb882c28b4f2621e3cccfbf1e1aa740f76a55c /src/audioOutputs/audioOutput_shout_mp3.c | |
parent | e4f5d6bdf47c96dc9c0b5fe287598bc10b168a71 (diff) | |
download | mpd-128d8c7c15c0713cfccc42dfeea9b0cd9ed11d14.tar.gz mpd-128d8c7c15c0713cfccc42dfeea9b0cd9ed11d14.tar.xz mpd-128d8c7c15c0713cfccc42dfeea9b0cd9ed11d14.zip |
audio_format: added audio_format_sample_size()
The inline function audio_format_sample_size() calculates how many
bytes each sample consumes. This function already takes into account
that 24 bit samples are 4 bytes long, not 3.
Diffstat (limited to '')
-rw-r--r-- | src/audioOutputs/audioOutput_shout_mp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutputs/audioOutput_shout_mp3.c b/src/audioOutputs/audioOutput_shout_mp3.c index 7bc3b5fba..d3ec0b75b 100644 --- a/src/audioOutputs/audioOutput_shout_mp3.c +++ b/src/audioOutputs/audioOutput_shout_mp3.c @@ -141,7 +141,7 @@ static int shout_mp3_encoder_encode(struct shout_data *sd, float (*lamebuf)[2]; struct shout_buffer *buf = &(sd->buf); unsigned int samples; - int bytes = sd->audio_format.bits / 8; + int bytes = audio_format_sample_size(&sd->audio_format); struct lame_data *ld = (struct lame_data *)sd->encoder_data; int bytes_out; |