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_osx.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 'src/audioOutputs/audioOutput_osx.c')
-rw-r--r-- | src/audioOutputs/audioOutput_osx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c index e8a65c453..2b17666ce 100644 --- a/src/audioOutputs/audioOutput_osx.c +++ b/src/audioOutputs/audioOutput_osx.c @@ -268,7 +268,7 @@ static int osx_openDevice(struct audio_output *audioOutput) #endif streamDesc.mBytesPerPacket = - audioFormat->channels * audioFormat->bits / 8; + audioFormat->channels * audio_format_sample_size(audioFormat); streamDesc.mFramesPerPacket = 1; streamDesc.mBytesPerFrame = streamDesc.mBytesPerPacket; streamDesc.mChannelsPerFrame = audioFormat->channels; |