diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-10-23 02:40:03 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-10-23 02:40:03 +0000 |
commit | 480023201aeaa198137c592eebcaff84bf59a5aa (patch) | |
tree | b72f1a58a233ed990d845cc5b1477561b03c4950 /src | |
parent | 12597322a2c4a1271249eb66192bfb6f0e1294e5 (diff) | |
download | mpd-480023201aeaa198137c592eebcaff84bf59a5aa.tar.gz mpd-480023201aeaa198137c592eebcaff84bf59a5aa.tar.xz mpd-480023201aeaa198137c592eebcaff84bf59a5aa.zip |
ok, resampling and converting to mono no works
git-svn-id: https://svn.musicpd.org/mpd/trunk@2309 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/pcm_utils.c | 68 |
1 files changed, 41 insertions, 27 deletions
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; } |