From 480023201aeaa198137c592eebcaff84bf59a5aa Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Sat, 23 Oct 2004 02:40:03 +0000 Subject: ok, resampling and converting to mono no works git-svn-id: https://svn.musicpd.org/mpd/trunk@2309 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/pcm_utils.c | 68 ++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 41 insertions(+), 27 deletions(-) (limited to 'src/pcm_utils.c') diff --git a/src/pcm_utils.c b/src/pcm_utils.c index b3191a399..dffdbde8d 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -242,28 +242,42 @@ void pcm_convertAudioFormat(AudioFormat * inFormat, char * inBuffer, size_t else { /* only works if outFormat is 16-bit stereo! */ /* resampling code blatantly ripped from ESD */ - mpd_sint32 rd_dat = 0; + mpd_uint32 rd_dat = 0; mpd_uint32 wr_dat = 0; mpd_sint16 lsample, rsample; - register mpd_sint16 * out = (mpd_sint16 *)outBuffer; - register mpd_sint16 * in = (mpd_sint16 *)dataChannelConv; - const int shift = sizeof(mpd_sint16); - mpd_uint32 nlen = ((( dataChannelLen >> shift) * + mpd_sint16 * out = (mpd_sint16 *)outBuffer; + mpd_sint16 * in = (mpd_sint16 *)dataChannelConv; + const int shift = sizeof(mpd_sint16)*outFormat->channels; + mpd_uint32 nlen = ((( dataChannelLen / shift) * (mpd_uint32)(outFormat->sampleRate)) / inFormat->sampleRate); - nlen <<= shift; + nlen *= outFormat->channels; - while( wr_dat < nlen / shift) { - rd_dat = wr_dat * inFormat->sampleRate / - outFormat->sampleRate; - rd_dat &= ~1; + switch(outFormat->channels) { + case 1: + while( wr_dat < nlen) { + rd_dat = wr_dat * inFormat->sampleRate / + outFormat->sampleRate; + + lsample = in[ rd_dat++ ]; + + out[ wr_dat++ ] = lsample; + } + break; + case 2: + while( wr_dat < nlen) { + rd_dat = wr_dat * inFormat->sampleRate / + outFormat->sampleRate; + rd_dat &= ~1; - lsample = in[ rd_dat++ ]; - rsample = in[ rd_dat++ ]; + lsample = in[ rd_dat++ ]; + rsample = in[ rd_dat++ ]; - out[ wr_dat++ ] = lsample; - out[ wr_dat++ ] = rsample; - } + out[ wr_dat++ ] = lsample; + out[ wr_dat++ ] = rsample; + } + break; + } } return; @@ -272,7 +286,7 @@ void pcm_convertAudioFormat(AudioFormat * inFormat, char * inBuffer, size_t size_t pcm_sizeOfOutputBufferForAudioFormatConversion(AudioFormat * inFormat, size_t inSize, AudioFormat * outFormat) { - const int shift = sizeof(mpd_sint16); + const int shift = sizeof(mpd_sint16)*outFormat->channels; size_t outSize = inSize; switch(inFormat->bits) { @@ -286,21 +300,21 @@ size_t pcm_sizeOfOutputBufferForAudioFormatConversion(AudioFormat * inFormat, exit(EXIT_FAILURE); } - switch(inFormat->channels) { - case 1: - outSize = (outSize >> 1) << 2; - break; - case 2: - break; - default: - ERROR("only 1 or 2 channels are supported for conversion!\n"); - exit(EXIT_FAILURE); + if(inFormat->channels != outFormat->channels) { + switch(inFormat->channels) { + case 1: + outSize = (outSize >> 1) << 2; + break; + case 2: + //outSize >>= 1; + break; + } } - outSize = (((outSize >> shift) * (mpd_uint32)(outFormat->sampleRate)) / + outSize = (((outSize / shift) * (mpd_uint32)(outFormat->sampleRate)) / inFormat->sampleRate); - outSize <<= shift; + outSize *= shift; return outSize; } -- cgit v1.2.3