aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_utils.c
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-05-22 15:21:56 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-05-22 15:21:56 +0000
commite6d7663b10242d1cb9ad0411dbb45502db154b76 (patch)
tree4d95dfc09ea3e5f52999c03ed84e8e44385129bf /src/pcm_utils.c
parentf2850a66f03accdaad8e36f590e2f1cb5bfe0036 (diff)
downloadmpd-e6d7663b10242d1cb9ad0411dbb45502db154b76.tar.gz
mpd-e6d7663b10242d1cb9ad0411dbb45502db154b76.tar.xz
mpd-e6d7663b10242d1cb9ad0411dbb45502db154b76.zip
Cleaning up/correcting some comments.
git-svn-id: https://svn.musicpd.org/mpd/trunk@6200 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/pcm_utils.c')
-rw-r--r--src/pcm_utils.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/pcm_utils.c b/src/pcm_utils.c
index 20825d4e8..c05559be5 100644
--- a/src/pcm_utils.c
+++ b/src/pcm_utils.c
@@ -185,7 +185,7 @@ static int pcm_getSamplerateConverter(void)
}
#endif
-/* outFormat bits must be 16 and channels must be 2! */
+/* outFormat bits must be 16 and channels must be 1 or 2! */
void pcm_convertAudioFormat(AudioFormat * inFormat, char *inBuffer,
size_t inSize, AudioFormat * outFormat,
char *outBuffer)
@@ -202,7 +202,7 @@ void pcm_convertAudioFormat(AudioFormat * inFormat, char *inBuffer,
assert(outFormat->bits == 16);
assert(outFormat->channels == 2 || outFormat->channels == 1);
- /* converts */
+ /* convert to 16 bit audio */
switch (inFormat->bits) {
case 8:
dataBitLen = inSize << 1;
@@ -231,14 +231,13 @@ void pcm_convertAudioFormat(AudioFormat * inFormat, char *inBuffer,
exit(EXIT_FAILURE);
}
- /* converts only between 16 bit audio between mono and stereo */
+ /* convert audio between mono and stereo */
if (inFormat->channels == outFormat->channels) {
dataChannelConv = dataBitConv;
dataChannelLen = dataBitLen;
} else {
switch (inFormat->channels) {
- /* convert from 1 -> 2 channels */
- case 1:
+ case 1: /* convert from 1 -> 2 channels */
dataChannelLen = (dataBitLen >> 1) << 2;
if (dataChannelLen > channelConvBufferLength) {
channelConvBuffer = xrealloc(channelConvBuffer,
@@ -257,8 +256,7 @@ void pcm_convertAudioFormat(AudioFormat * inFormat, char *inBuffer,
}
}
break;
- /* convert from 2 -> 1 channels */
- case 2:
+ case 2: /* convert from 2 -> 1 channels */
dataChannelLen = dataBitLen >> 1;
if (dataChannelLen > channelConvBufferLength) {
channelConvBuffer = xrealloc(channelConvBuffer,
@@ -278,8 +276,8 @@ void pcm_convertAudioFormat(AudioFormat * inFormat, char *inBuffer,
}
break;
default:
- ERROR
- ("only 1 or 2 channels are supported for conversion!\n");
+ ERROR("only 1 or 2 channels are supported for "
+ "conversion!\n");
exit(EXIT_FAILURE);
}
}
@@ -337,7 +335,6 @@ void pcm_convertAudioFormat(AudioFormat * inFormat, char *inBuffer,
src_float_to_short_array(data.data_out, (short *)outBuffer, data.output_frames * outFormat->channels);
#else
- /* only works if outFormat is 16-bit stereo! */
/* resampling code blatantly ripped from ESD */
mpd_uint32 rd_dat = 0;
mpd_uint32 wr_dat = 0;