2004-02-24 18:06:14 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2006-07-14 21:37:45 +02:00
|
|
|
* (c)2003-2006 by Warren Dukes (warren.dukes@gmail.com)
|
2004-02-24 18:06:14 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#include "pcm_utils.h"
|
|
|
|
|
|
|
|
#include "mpd_types.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
2004-05-10 17:21:40 +02:00
|
|
|
#include <assert.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
void pcm_volumeChange(char * buffer, int bufferSize, AudioFormat * format,
|
|
|
|
int volume)
|
|
|
|
{
|
|
|
|
mpd_sint32 temp32;
|
|
|
|
mpd_sint8 * buffer8 = (mpd_sint8 *)buffer;
|
|
|
|
mpd_sint16 * buffer16 = (mpd_sint16 *)buffer;
|
|
|
|
|
2004-04-11 13:48:04 +02:00
|
|
|
if(volume>=1000) return;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
if(volume<=0) {
|
|
|
|
memset(buffer,0,bufferSize);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(format->bits) {
|
|
|
|
case 16:
|
|
|
|
while(bufferSize>0) {
|
|
|
|
temp32 = *buffer16;
|
|
|
|
temp32*= volume;
|
2004-04-11 13:48:04 +02:00
|
|
|
temp32/=1000;
|
2004-02-24 00:41:20 +01:00
|
|
|
*buffer16 = temp32>32767 ? 32767 :
|
|
|
|
(temp32<-32768 ? -32768 : temp32);
|
|
|
|
buffer16++;
|
|
|
|
bufferSize-=2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
while(bufferSize>0) {
|
|
|
|
temp32 = *buffer8;
|
|
|
|
temp32*= volume;
|
2004-04-11 13:48:04 +02:00
|
|
|
temp32/=1000;
|
2004-02-24 00:41:20 +01:00
|
|
|
*buffer8 = temp32>127 ? 127 :
|
|
|
|
(temp32<-128 ? -128 : temp32);
|
|
|
|
buffer8++;
|
|
|
|
bufferSize--;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("%i bits not supported by pcm_volumeChange!\n",
|
|
|
|
format->bits);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-14 22:08:35 +02:00
|
|
|
static void pcm_add(char * buffer1, char * buffer2, size_t bufferSize1,
|
2004-03-05 01:19:02 +01:00
|
|
|
size_t bufferSize2, int vol1, int vol2, AudioFormat * format)
|
2004-02-24 00:41:20 +01:00
|
|
|
{
|
|
|
|
mpd_sint32 temp32;
|
|
|
|
mpd_sint8 * buffer8_1 = (mpd_sint8 *)buffer1;
|
|
|
|
mpd_sint8 * buffer8_2 = (mpd_sint8 *)buffer2;
|
|
|
|
mpd_sint16 * buffer16_1 = (mpd_sint16 *)buffer1;
|
|
|
|
mpd_sint16 * buffer16_2 = (mpd_sint16 *)buffer2;
|
|
|
|
|
|
|
|
switch(format->bits) {
|
|
|
|
case 16:
|
|
|
|
while(bufferSize1>0 && bufferSize2>0) {
|
2004-04-11 13:48:04 +02:00
|
|
|
temp32 = (vol1*(*buffer16_1)+vol2*(*buffer16_2))/1000;
|
2004-02-24 00:41:20 +01:00
|
|
|
*buffer16_1 = temp32>32767 ? 32767 :
|
|
|
|
(temp32<-32768 ? -32768 : temp32);
|
|
|
|
buffer16_1++;
|
|
|
|
buffer16_2++;
|
|
|
|
bufferSize1-=2;
|
|
|
|
bufferSize2-=2;
|
|
|
|
}
|
2004-03-04 21:45:49 +01:00
|
|
|
if(bufferSize2>0) memcpy(buffer16_1,buffer16_2,bufferSize2);
|
2004-02-24 00:41:20 +01:00
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
while(bufferSize1>0 && bufferSize2>0) {
|
2004-04-11 13:48:04 +02:00
|
|
|
temp32 = (vol1*(*buffer8_1)+vol2*(*buffer8_2))/1000;
|
2004-02-24 00:41:20 +01:00
|
|
|
*buffer8_1 = temp32>127 ? 127 :
|
|
|
|
(temp32<-128 ? -128 : temp32);
|
|
|
|
buffer8_1++;
|
|
|
|
buffer8_2++;
|
|
|
|
bufferSize1--;
|
|
|
|
bufferSize2--;
|
|
|
|
}
|
|
|
|
if(bufferSize2>0) memcpy(buffer8_1,buffer8_2,bufferSize2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("%i bits not supported by pcm_add!\n",format->bits);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcm_mix(char * buffer1, char * buffer2, size_t bufferSize1,
|
|
|
|
size_t bufferSize2, AudioFormat * format, float portion1)
|
|
|
|
{
|
2004-03-05 01:19:02 +01:00
|
|
|
int vol1;
|
2004-02-24 00:41:20 +01:00
|
|
|
float s = sin(M_PI_2*portion1);
|
|
|
|
s*=s;
|
2004-03-05 01:19:02 +01:00
|
|
|
|
2004-04-11 13:48:04 +02:00
|
|
|
vol1 = s*1000+0.5;
|
|
|
|
vol1 = vol1>1000 ? 1000 : ( vol1<0 ? 0 : vol1 );
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-04-11 13:48:04 +02:00
|
|
|
pcm_add(buffer1,buffer2,bufferSize1,bufferSize2,vol1,1000-vol1,format);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-05-10 16:06:23 +02:00
|
|
|
|
2004-05-10 19:08:46 +02:00
|
|
|
|
|
|
|
/* outFormat bits must be 16 and channels must be 2! */
|
2004-05-10 16:06:23 +02:00
|
|
|
void pcm_convertAudioFormat(AudioFormat * inFormat, char * inBuffer, size_t
|
|
|
|
inSize, AudioFormat * outFormat, char * outBuffer)
|
|
|
|
{
|
2004-05-10 19:08:46 +02:00
|
|
|
static char * bitConvBuffer = NULL;
|
|
|
|
static int bitConvBufferLength = 0;
|
|
|
|
static char * channelConvBuffer = NULL;
|
|
|
|
static int channelConvBufferLength = 0;
|
|
|
|
char * dataChannelConv;
|
|
|
|
int dataChannelLen;
|
|
|
|
char * dataBitConv;
|
|
|
|
int dataBitLen;
|
2004-05-10 17:21:40 +02:00
|
|
|
|
|
|
|
assert(outFormat->bits==16);
|
2004-10-23 03:04:58 +02:00
|
|
|
assert(outFormat->channels==2 || outFormat->channels==1);
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2004-05-10 19:08:46 +02:00
|
|
|
/* converts */
|
|
|
|
switch(inFormat->bits) {
|
|
|
|
case 8:
|
|
|
|
dataBitLen = inSize << 1;
|
|
|
|
if(dataBitLen > bitConvBufferLength) {
|
|
|
|
bitConvBuffer = realloc(bitConvBuffer, dataBitLen);
|
|
|
|
bitConvBufferLength = dataBitLen;
|
|
|
|
}
|
|
|
|
dataBitConv = bitConvBuffer;
|
|
|
|
{
|
|
|
|
mpd_sint8 * in = (mpd_sint8 *)inBuffer;
|
|
|
|
mpd_sint16 * out = (mpd_sint16 *)dataBitConv;
|
|
|
|
int i;
|
|
|
|
for(i=0; i<inSize; i++) {
|
|
|
|
*out++ = (*in++) << 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
dataBitConv = inBuffer;
|
|
|
|
dataBitLen = inSize;
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
/* put dithering code from mp3_decode here */
|
|
|
|
default:
|
|
|
|
ERROR("only 8 or 16 bits are supported for conversion!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2004-05-10 19:08:46 +02:00
|
|
|
/* converts only between 16 bit audio between mono and stereo */
|
2004-10-23 03:04:58 +02:00
|
|
|
if(inFormat->channels == outFormat->channels)
|
|
|
|
{
|
2004-05-10 19:08:46 +02:00
|
|
|
dataChannelConv = dataBitConv;
|
|
|
|
dataChannelLen = dataBitLen;
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
switch(inFormat->channels) {
|
|
|
|
/* convert from 1 -> 2 channels */
|
|
|
|
case 1:
|
|
|
|
dataChannelLen = (dataBitLen >> 1) << 2;
|
|
|
|
if(dataChannelLen > channelConvBufferLength) {
|
|
|
|
channelConvBuffer = realloc(channelConvBuffer,
|
|
|
|
dataChannelLen);
|
|
|
|
channelConvBufferLength = dataChannelLen;
|
|
|
|
}
|
|
|
|
dataChannelConv = channelConvBuffer;
|
|
|
|
{
|
|
|
|
mpd_sint16 * in = (mpd_sint16 *)dataBitConv;
|
|
|
|
mpd_sint16 * out = (mpd_sint16 *)dataChannelConv;
|
|
|
|
int i, inSamples = dataBitLen >> 1;
|
|
|
|
for(i=0;i<inSamples;i++) {
|
|
|
|
*out++ = *in;
|
|
|
|
*out++ = *in++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
/* convert from 2 -> 1 channels */
|
|
|
|
case 2:
|
|
|
|
dataChannelLen = dataBitLen >> 1;
|
|
|
|
if(dataChannelLen > channelConvBufferLength) {
|
|
|
|
channelConvBuffer = realloc(channelConvBuffer,
|
|
|
|
dataChannelLen);
|
|
|
|
channelConvBufferLength = dataChannelLen;
|
|
|
|
}
|
|
|
|
dataChannelConv = channelConvBuffer;
|
|
|
|
{
|
|
|
|
mpd_sint16 * in = (mpd_sint16 *)dataBitConv;
|
|
|
|
mpd_sint16 * out = (mpd_sint16 *)dataChannelConv;
|
|
|
|
int i, inSamples = dataBitLen >> 2;
|
|
|
|
for(i=0;i<inSamples;i++) {
|
|
|
|
*out = (*in++)/2;
|
|
|
|
*out++ += (*in++)/2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("only 1 or 2 channels are supported for conversion!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2004-05-10 19:08:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(inFormat->sampleRate == outFormat->sampleRate) {
|
|
|
|
memcpy(outBuffer,dataChannelConv,dataChannelLen);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* only works if outFormat is 16-bit stereo! */
|
2004-05-11 00:31:23 +02:00
|
|
|
/* resampling code blatantly ripped from ESD */
|
2006-07-14 22:08:35 +02:00
|
|
|
mpd_uint32 rd_dat = 0;
|
|
|
|
mpd_uint32 wr_dat = 0;
|
|
|
|
mpd_sint16 lsample, rsample;
|
|
|
|
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)) /
|
2004-05-10 17:21:40 +02:00
|
|
|
inFormat->sampleRate);
|
2004-10-23 04:40:03 +02:00
|
|
|
nlen *= outFormat->channels;
|
2004-05-11 00:31:23 +02:00
|
|
|
|
2004-10-23 04:40:03 +02:00
|
|
|
switch(outFormat->channels) {
|
|
|
|
case 1:
|
2006-07-14 22:08:35 +02:00
|
|
|
while( wr_dat < nlen) {
|
|
|
|
rd_dat = wr_dat * inFormat->sampleRate /
|
|
|
|
outFormat->sampleRate;
|
2004-10-23 04:40:03 +02:00
|
|
|
|
2006-07-14 22:08:35 +02:00
|
|
|
lsample = in[ rd_dat++ ];
|
2004-10-23 04:40:03 +02:00
|
|
|
|
2006-07-14 22:08:35 +02:00
|
|
|
out[ wr_dat++ ] = lsample;
|
|
|
|
}
|
2004-10-23 04:40:03 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
2006-07-14 22:08:35 +02:00
|
|
|
while( wr_dat < nlen) {
|
|
|
|
rd_dat = wr_dat * inFormat->sampleRate /
|
|
|
|
outFormat->sampleRate;
|
|
|
|
rd_dat &= ~1;
|
2004-05-11 00:31:23 +02:00
|
|
|
|
2006-07-14 22:08:35 +02:00
|
|
|
lsample = in[ rd_dat++ ];
|
|
|
|
rsample = in[ rd_dat++ ];
|
2004-05-11 00:31:23 +02:00
|
|
|
|
2006-07-14 22:08:35 +02:00
|
|
|
out[ wr_dat++ ] = lsample;
|
|
|
|
out[ wr_dat++ ] = rsample;
|
|
|
|
}
|
2004-10-23 04:40:03 +02:00
|
|
|
break;
|
|
|
|
}
|
2004-05-10 17:21:40 +02:00
|
|
|
}
|
2004-05-10 16:06:23 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t pcm_sizeOfOutputBufferForAudioFormatConversion(AudioFormat * inFormat,
|
2004-10-23 03:04:58 +02:00
|
|
|
size_t inSize, AudioFormat * outFormat)
|
2004-05-10 16:06:23 +02:00
|
|
|
{
|
2004-10-23 04:40:03 +02:00
|
|
|
const int shift = sizeof(mpd_sint16)*outFormat->channels;
|
2004-05-10 19:15:04 +02:00
|
|
|
size_t outSize = inSize;
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2004-05-10 19:15:04 +02:00
|
|
|
switch(inFormat->bits) {
|
|
|
|
case 8:
|
|
|
|
outSize = outSize << 1;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("only 8 or 16 bits are supported for conversion!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2004-10-23 04:40:03 +02:00
|
|
|
if(inFormat->channels != outFormat->channels) {
|
|
|
|
switch(inFormat->channels) {
|
|
|
|
case 1:
|
|
|
|
outSize = (outSize >> 1) << 2;
|
|
|
|
break;
|
|
|
|
case 2:
|
2004-10-23 14:58:59 +02:00
|
|
|
outSize >>= 1;
|
2004-10-23 04:40:03 +02:00
|
|
|
break;
|
|
|
|
}
|
2004-05-10 19:15:04 +02:00
|
|
|
}
|
|
|
|
|
2004-10-23 04:40:03 +02:00
|
|
|
outSize = (((outSize / shift) * (mpd_uint32)(outFormat->sampleRate)) /
|
2004-05-10 19:15:04 +02:00
|
|
|
inFormat->sampleRate);
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2004-10-23 04:40:03 +02:00
|
|
|
outSize *= shift;
|
2004-05-10 16:06:23 +02:00
|
|
|
|
2004-05-10 19:15:04 +02:00
|
|
|
return outSize;
|
2004-05-10 16:06:23 +02:00
|
|
|
}
|