2004-02-24 18:06:14 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 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"
|
2006-08-26 08:25:57 +02:00
|
|
|
#include "utils.h"
|
2007-02-02 04:51:07 +01:00
|
|
|
#include "conf.h"
|
2008-01-03 08:29:49 +01:00
|
|
|
#include "os_compat.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-04-15 07:56:35 +02:00
|
|
|
void pcm_volumeChange(char *buffer, int bufferSize, const AudioFormat * format,
|
2007-05-22 17:02:25 +02:00
|
|
|
int volume)
|
2004-02-24 00:41:20 +01:00
|
|
|
{
|
|
|
|
mpd_sint32 temp32;
|
2006-07-20 18:02:40 +02:00
|
|
|
mpd_sint8 *buffer8 = (mpd_sint8 *) buffer;
|
|
|
|
mpd_sint16 *buffer16 = (mpd_sint16 *) buffer;
|
|
|
|
|
|
|
|
if (volume >= 1000)
|
|
|
|
return;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (volume <= 0) {
|
|
|
|
memset(buffer, 0, bufferSize);
|
2004-02-24 00:41:20 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
switch (format->bits) {
|
2004-02-24 00:41:20 +01:00
|
|
|
case 16:
|
2006-07-20 18:02:40 +02:00
|
|
|
while (bufferSize > 0) {
|
2004-02-24 00:41:20 +01:00
|
|
|
temp32 = *buffer16;
|
2006-07-20 18:02:40 +02:00
|
|
|
temp32 *= volume;
|
2007-02-02 04:51:07 +01:00
|
|
|
temp32 += rand() & 511;
|
|
|
|
temp32 -= rand() & 511;
|
|
|
|
temp32 += 500;
|
2006-07-20 18:02:40 +02:00
|
|
|
temp32 /= 1000;
|
|
|
|
*buffer16 = temp32 > 32767 ? 32767 :
|
|
|
|
(temp32 < -32768 ? -32768 : temp32);
|
2004-02-24 00:41:20 +01:00
|
|
|
buffer16++;
|
2006-07-20 18:02:40 +02:00
|
|
|
bufferSize -= 2;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
2006-07-20 18:02:40 +02:00
|
|
|
while (bufferSize > 0) {
|
2004-02-24 00:41:20 +01:00
|
|
|
temp32 = *buffer8;
|
2006-07-20 18:02:40 +02:00
|
|
|
temp32 *= volume;
|
2007-02-02 04:51:07 +01:00
|
|
|
temp32 += rand() & 511;
|
|
|
|
temp32 -= rand() & 511;
|
|
|
|
temp32 += 500;
|
2006-07-20 18:02:40 +02:00
|
|
|
temp32 /= 1000;
|
|
|
|
*buffer8 = temp32 > 127 ? 127 :
|
|
|
|
(temp32 < -128 ? -128 : temp32);
|
2004-02-24 00:41:20 +01:00
|
|
|
buffer8++;
|
|
|
|
bufferSize--;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("%i bits not supported by pcm_volumeChange!\n",
|
2006-07-20 18:02:40 +02:00
|
|
|
format->bits);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-12 06:07:11 +02:00
|
|
|
static void pcm_add(char *buffer1, const char *buffer2, size_t bufferSize1,
|
2007-05-22 17:02:25 +02:00
|
|
|
size_t bufferSize2, int vol1, int vol2,
|
2008-04-12 06:07:11 +02:00
|
|
|
const AudioFormat * format)
|
2004-02-24 00:41:20 +01:00
|
|
|
{
|
|
|
|
mpd_sint32 temp32;
|
2006-07-20 18:02:40 +02:00
|
|
|
mpd_sint8 *buffer8_1 = (mpd_sint8 *) buffer1;
|
2008-04-12 06:07:11 +02:00
|
|
|
const mpd_sint8 *buffer8_2 = (const mpd_sint8 *) buffer2;
|
2006-07-20 18:02:40 +02:00
|
|
|
mpd_sint16 *buffer16_1 = (mpd_sint16 *) buffer1;
|
2008-04-12 06:07:11 +02:00
|
|
|
const mpd_sint16 *buffer16_2 = (const mpd_sint16 *) buffer2;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
switch (format->bits) {
|
2004-02-24 00:41:20 +01:00
|
|
|
case 16:
|
2006-07-20 18:02:40 +02:00
|
|
|
while (bufferSize1 > 0 && bufferSize2 > 0) {
|
|
|
|
temp32 =
|
|
|
|
(vol1 * (*buffer16_1) +
|
2007-02-02 04:51:07 +01:00
|
|
|
vol2 * (*buffer16_2));
|
|
|
|
temp32 += rand() & 511;
|
|
|
|
temp32 -= rand() & 511;
|
|
|
|
temp32 += 500;
|
|
|
|
temp32 /= 1000;
|
2006-07-20 18:02:40 +02:00
|
|
|
*buffer16_1 =
|
|
|
|
temp32 > 32767 ? 32767 : (temp32 <
|
|
|
|
-32768 ? -32768 : temp32);
|
2004-02-24 00:41:20 +01:00
|
|
|
buffer16_1++;
|
|
|
|
buffer16_2++;
|
2006-07-20 18:02:40 +02:00
|
|
|
bufferSize1 -= 2;
|
|
|
|
bufferSize2 -= 2;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
if (bufferSize2 > 0)
|
|
|
|
memcpy(buffer16_1, buffer16_2, bufferSize2);
|
2004-02-24 00:41:20 +01:00
|
|
|
break;
|
|
|
|
case 8:
|
2006-07-20 18:02:40 +02:00
|
|
|
while (bufferSize1 > 0 && bufferSize2 > 0) {
|
|
|
|
temp32 =
|
2007-02-02 04:51:07 +01:00
|
|
|
(vol1 * (*buffer8_1) + vol2 * (*buffer8_2));
|
|
|
|
temp32 += rand() & 511;
|
|
|
|
temp32 -= rand() & 511;
|
|
|
|
temp32 += 500;
|
|
|
|
temp32 /= 1000;
|
2006-07-20 18:02:40 +02:00
|
|
|
*buffer8_1 =
|
|
|
|
temp32 > 127 ? 127 : (temp32 <
|
|
|
|
-128 ? -128 : temp32);
|
2004-02-24 00:41:20 +01:00
|
|
|
buffer8_1++;
|
|
|
|
buffer8_2++;
|
|
|
|
bufferSize1--;
|
|
|
|
bufferSize2--;
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
if (bufferSize2 > 0)
|
|
|
|
memcpy(buffer8_1, buffer8_2, bufferSize2);
|
2004-02-24 00:41:20 +01:00
|
|
|
break;
|
|
|
|
default:
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("%i bits not supported by pcm_add!\n", format->bits);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-12 06:07:11 +02:00
|
|
|
void pcm_mix(char *buffer1, const char *buffer2, size_t bufferSize1,
|
|
|
|
size_t bufferSize2, const AudioFormat * format, float portion1)
|
2004-02-24 00:41:20 +01:00
|
|
|
{
|
2004-03-05 01:19:02 +01:00
|
|
|
int vol1;
|
2006-07-20 18:02:40 +02:00
|
|
|
float s = sin(M_PI_2 * portion1);
|
|
|
|
s *= s;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
vol1 = s * 1000 + 0.5;
|
|
|
|
vol1 = vol1 > 1000 ? 1000 : (vol1 < 0 ? 0 : vol1);
|
2004-05-10 16:06:23 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
pcm_add(buffer1, buffer2, bufferSize1, bufferSize2, vol1, 1000 - vol1,
|
|
|
|
format);
|
|
|
|
}
|
2004-05-10 19:08:46 +02:00
|
|
|
|
2007-02-02 04:51:07 +01:00
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
2007-05-23 01:11:36 +02:00
|
|
|
static int pcm_getSampleRateConverter(void)
|
2007-05-22 17:02:25 +02:00
|
|
|
{
|
2007-05-26 19:33:59 +02:00
|
|
|
const char *conf = getConfigParamValue(CONF_SAMPLERATE_CONVERTER);
|
|
|
|
long convalgo;
|
|
|
|
char *test;
|
2007-02-02 04:51:07 +01:00
|
|
|
size_t len;
|
2007-05-26 19:33:59 +02:00
|
|
|
|
|
|
|
if (!conf) {
|
|
|
|
convalgo = SRC_SINC_FASTEST;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
convalgo = strtol(conf, &test, 10);
|
|
|
|
if (*test == '\0' && src_get_name(convalgo))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
len = strlen(conf);
|
|
|
|
for (convalgo = 0 ; ; convalgo++) {
|
|
|
|
test = (char *)src_get_name(convalgo);
|
|
|
|
if (!test) {
|
|
|
|
convalgo = SRC_SINC_FASTEST;
|
|
|
|
break;
|
2007-02-02 04:51:07 +01:00
|
|
|
}
|
2007-05-26 19:33:59 +02:00
|
|
|
if (strncasecmp(test, conf, len) == 0)
|
|
|
|
goto out;
|
2007-02-02 04:51:07 +01:00
|
|
|
}
|
2007-05-26 19:33:59 +02:00
|
|
|
|
|
|
|
ERROR("unknown samplerate converter \"%s\"\n", conf);
|
|
|
|
out:
|
|
|
|
DEBUG("selecting samplerate converter \"%s\"\n",
|
|
|
|
src_get_name(convalgo));
|
|
|
|
|
2007-02-02 04:51:07 +01:00
|
|
|
return convalgo;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
2007-05-26 18:39:55 +02:00
|
|
|
static size_t pcm_convertSampleRate(mpd_sint8 channels, mpd_uint32 inSampleRate,
|
2008-04-12 06:15:30 +02:00
|
|
|
const char *inBuffer, size_t inSize,
|
2007-05-26 18:39:55 +02:00
|
|
|
mpd_uint32 outSampleRate, char *outBuffer,
|
|
|
|
size_t outSize, ConvState *convState)
|
2004-05-10 16:06:23 +02:00
|
|
|
{
|
2007-05-23 12:31:07 +02:00
|
|
|
static int convalgo = -1;
|
2007-05-24 23:15:37 +02:00
|
|
|
SRC_DATA *data = &convState->data;
|
|
|
|
size_t dataInSize;
|
|
|
|
size_t dataOutSize;
|
2007-05-23 01:11:36 +02:00
|
|
|
int error;
|
|
|
|
|
2007-05-23 12:31:07 +02:00
|
|
|
if (convalgo < 0)
|
|
|
|
convalgo = pcm_getSampleRateConverter();
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2007-05-24 23:15:37 +02:00
|
|
|
/* (re)set the state/ratio if the in or out format changed */
|
|
|
|
if ((channels != convState->lastChannels) ||
|
|
|
|
(inSampleRate != convState->lastInSampleRate) ||
|
|
|
|
(outSampleRate != convState->lastOutSampleRate)) {
|
|
|
|
convState->error = 0;
|
|
|
|
convState->lastChannels = channels;
|
|
|
|
convState->lastInSampleRate = inSampleRate;
|
|
|
|
convState->lastOutSampleRate = outSampleRate;
|
|
|
|
|
|
|
|
if (convState->state)
|
|
|
|
convState->state = src_delete(convState->state);
|
|
|
|
|
|
|
|
convState->state = src_new(convalgo, channels, &error);
|
|
|
|
if (!convState->state) {
|
|
|
|
ERROR("cannot create new libsamplerate state: %s\n",
|
|
|
|
src_strerror(error));
|
|
|
|
convState->error = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
data->src_ratio = (double)outSampleRate / (double)inSampleRate;
|
|
|
|
DEBUG("setting samplerate conversion ratio to %.2lf\n",
|
|
|
|
data->src_ratio);
|
|
|
|
src_set_ratio(convState->state, data->src_ratio);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* there was an error previously, and nothing has changed */
|
|
|
|
if (convState->error)
|
|
|
|
return 0;
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2007-05-24 23:15:37 +02:00
|
|
|
data->input_frames = inSize / 2 / channels;
|
|
|
|
dataInSize = data->input_frames * sizeof(float) * channels;
|
|
|
|
if (dataInSize > convState->dataInSize) {
|
|
|
|
convState->dataInSize = dataInSize;
|
|
|
|
data->data_in = xrealloc(data->data_in, dataInSize);
|
2004-05-10 19:08:46 +02:00
|
|
|
}
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2007-05-24 23:15:37 +02:00
|
|
|
data->output_frames = outSize / 2 / channels;
|
|
|
|
dataOutSize = data->output_frames * sizeof(float) * channels;
|
|
|
|
if (dataOutSize > convState->dataOutSize) {
|
|
|
|
convState->dataOutSize = dataOutSize;
|
|
|
|
data->data_out = xrealloc(data->data_out, dataOutSize);
|
2004-05-10 19:08:46 +02:00
|
|
|
}
|
|
|
|
|
2007-05-24 23:15:37 +02:00
|
|
|
src_short_to_float_array((short *)inBuffer, data->data_in,
|
|
|
|
data->input_frames * channels);
|
2007-05-23 01:11:36 +02:00
|
|
|
|
2007-05-24 23:15:37 +02:00
|
|
|
error = src_process(convState->state, data);
|
2007-05-23 01:11:36 +02:00
|
|
|
if (error) {
|
2007-05-23 12:31:07 +02:00
|
|
|
ERROR("error processing samples with libsamplerate: %s\n",
|
|
|
|
src_strerror(error));
|
2007-05-24 23:15:37 +02:00
|
|
|
convState->error = 1;
|
2007-05-23 01:11:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-24 23:15:37 +02:00
|
|
|
src_float_to_short_array(data->data_out, (short *)outBuffer,
|
|
|
|
data->output_frames_gen * channels);
|
2007-05-23 01:11:36 +02:00
|
|
|
|
2007-05-26 18:39:55 +02:00
|
|
|
return data->output_frames_gen * 2 * channels;
|
2007-05-23 01:11:36 +02:00
|
|
|
}
|
|
|
|
#else /* !HAVE_LIBSAMPLERATE */
|
|
|
|
/* resampling code blatantly ripped from ESD */
|
2007-05-26 18:39:55 +02:00
|
|
|
static size_t pcm_convertSampleRate(mpd_sint8 channels, mpd_uint32 inSampleRate,
|
2008-08-26 08:27:02 +02:00
|
|
|
const char *inBuffer,
|
|
|
|
mpd_unused size_t inSize,
|
2007-05-26 18:39:55 +02:00
|
|
|
mpd_uint32 outSampleRate, char *outBuffer,
|
2008-08-26 08:27:02 +02:00
|
|
|
size_t outSize,
|
|
|
|
mpd_unused ConvState *convState)
|
2007-05-23 01:11:36 +02:00
|
|
|
{
|
|
|
|
mpd_uint32 rd_dat = 0;
|
|
|
|
mpd_uint32 wr_dat = 0;
|
|
|
|
mpd_sint16 *in = (mpd_sint16 *)inBuffer;
|
|
|
|
mpd_sint16 *out = (mpd_sint16 *)outBuffer;
|
|
|
|
mpd_uint32 nlen = outSize / 2;
|
|
|
|
mpd_sint16 lsample, rsample;
|
|
|
|
|
|
|
|
switch (channels) {
|
|
|
|
case 1:
|
|
|
|
while (wr_dat < nlen) {
|
|
|
|
rd_dat = wr_dat * inSampleRate / outSampleRate;
|
|
|
|
|
|
|
|
lsample = in[rd_dat++];
|
|
|
|
|
|
|
|
out[wr_dat++] = lsample;
|
2007-02-02 04:51:07 +01:00
|
|
|
}
|
2007-05-23 01:11:36 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
while (wr_dat < nlen) {
|
|
|
|
rd_dat = wr_dat * inSampleRate / outSampleRate;
|
|
|
|
rd_dat &= ~1;
|
|
|
|
|
|
|
|
lsample = in[rd_dat++];
|
|
|
|
rsample = in[rd_dat++];
|
2007-02-02 04:51:07 +01:00
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
out[wr_dat++] = lsample;
|
|
|
|
out[wr_dat++] = rsample;
|
2007-02-02 04:51:07 +01:00
|
|
|
}
|
2007-05-23 01:11:36 +02:00
|
|
|
break;
|
|
|
|
}
|
2007-02-02 04:51:07 +01:00
|
|
|
|
2007-05-26 18:39:55 +02:00
|
|
|
return outSize;
|
2007-05-23 01:11:36 +02:00
|
|
|
}
|
|
|
|
#endif /* !HAVE_LIBSAMPLERATE */
|
2007-02-02 04:51:07 +01:00
|
|
|
|
2008-04-12 06:15:30 +02:00
|
|
|
static char *pcm_convertChannels(mpd_sint8 channels, const char *inBuffer,
|
2007-05-23 01:11:36 +02:00
|
|
|
size_t inSize, size_t *outSize)
|
|
|
|
{
|
|
|
|
static char *buf;
|
|
|
|
static size_t len;
|
2007-09-10 09:12:37 +02:00
|
|
|
char *outBuffer = NULL;
|
2007-05-23 01:11:36 +02:00
|
|
|
mpd_sint16 *in;
|
|
|
|
mpd_sint16 *out;
|
|
|
|
int inSamples, i;
|
|
|
|
|
2007-05-23 13:04:04 +02:00
|
|
|
switch (channels) {
|
2007-05-23 01:11:36 +02:00
|
|
|
/* convert from 1 -> 2 channels */
|
|
|
|
case 1:
|
|
|
|
*outSize = (inSize >> 1) << 2;
|
|
|
|
if (*outSize > len) {
|
|
|
|
len = *outSize;
|
|
|
|
buf = xrealloc(buf, len);
|
2007-02-19 08:58:08 +01:00
|
|
|
}
|
2007-05-23 01:11:36 +02:00
|
|
|
outBuffer = buf;
|
|
|
|
|
|
|
|
inSamples = inSize >> 1;
|
|
|
|
in = (mpd_sint16 *)inBuffer;
|
|
|
|
out = (mpd_sint16 *)outBuffer;
|
|
|
|
for (i = 0; i < inSamples; i++) {
|
|
|
|
*out++ = *in;
|
|
|
|
*out++ = *in++;
|
2007-02-19 08:58:08 +01:00
|
|
|
}
|
2007-02-02 04:51:07 +01:00
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
break;
|
|
|
|
/* convert from 2 -> 1 channels */
|
|
|
|
case 2:
|
|
|
|
*outSize = inSize >> 1;
|
|
|
|
if (*outSize > len) {
|
|
|
|
len = *outSize;
|
|
|
|
buf = xrealloc(buf, len);
|
|
|
|
}
|
|
|
|
outBuffer = buf;
|
|
|
|
|
|
|
|
inSamples = inSize >> 2;
|
|
|
|
in = (mpd_sint16 *)inBuffer;
|
|
|
|
out = (mpd_sint16 *)outBuffer;
|
|
|
|
for (i = 0; i < inSamples; i++) {
|
|
|
|
*out = (*in++) / 2;
|
|
|
|
*out++ += (*in++) / 2;
|
2007-02-02 04:51:07 +01:00
|
|
|
}
|
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("only 1 or 2 channels are supported for conversion!\n");
|
|
|
|
}
|
2004-10-23 04:40:03 +02:00
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
return outBuffer;
|
|
|
|
}
|
2004-10-23 04:40:03 +02:00
|
|
|
|
2008-04-12 06:15:30 +02:00
|
|
|
static const char *pcm_convertTo16bit(mpd_sint8 bits, const char *inBuffer,
|
|
|
|
size_t inSize, size_t *outSize)
|
2007-05-23 01:11:36 +02:00
|
|
|
{
|
|
|
|
static char *buf;
|
|
|
|
static size_t len;
|
|
|
|
char *outBuffer = NULL;
|
|
|
|
mpd_sint8 *in;
|
|
|
|
mpd_sint16 *out;
|
2008-03-26 11:38:07 +01:00
|
|
|
size_t i;
|
2007-05-23 01:11:36 +02:00
|
|
|
|
2007-05-23 13:04:04 +02:00
|
|
|
switch (bits) {
|
2007-05-23 01:11:36 +02:00
|
|
|
case 8:
|
|
|
|
*outSize = inSize << 1;
|
|
|
|
if (*outSize > len) {
|
|
|
|
len = *outSize;
|
|
|
|
buf = xrealloc(buf, len);
|
|
|
|
}
|
|
|
|
outBuffer = buf;
|
2004-05-11 00:31:23 +02:00
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
in = (mpd_sint8 *)inBuffer;
|
|
|
|
out = (mpd_sint16 *)outBuffer;
|
|
|
|
for (i = 0; i < inSize; i++)
|
|
|
|
*out++ = (*in++) << 8;
|
2004-05-11 00:31:23 +02:00
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
*outSize = inSize;
|
2008-04-12 06:07:11 +02:00
|
|
|
return inBuffer;
|
2007-05-23 01:11:36 +02:00
|
|
|
case 24:
|
|
|
|
/* put dithering code from mp3_decode here */
|
|
|
|
default:
|
|
|
|
ERROR("only 8 or 16 bits are supported for conversion!\n");
|
2004-05-10 17:21:40 +02:00
|
|
|
}
|
2004-05-10 16:06:23 +02:00
|
|
|
|
2007-05-23 01:11:36 +02:00
|
|
|
return outBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* outFormat bits must be 16 and channels must be 1 or 2! */
|
2008-04-15 07:56:35 +02:00
|
|
|
size_t pcm_convertAudioFormat(const AudioFormat * inFormat,
|
|
|
|
const char *inBuffer, size_t inSize,
|
|
|
|
const AudioFormat * outFormat,
|
2007-05-26 18:39:55 +02:00
|
|
|
char *outBuffer, ConvState *convState)
|
2007-05-23 01:11:36 +02:00
|
|
|
{
|
2008-04-12 06:15:30 +02:00
|
|
|
const char *buf;
|
2008-04-12 06:16:44 +02:00
|
|
|
size_t len = 0;
|
2007-05-23 01:11:36 +02:00
|
|
|
size_t outSize = pcm_sizeOfConvBuffer(inFormat, inSize, outFormat);
|
|
|
|
|
|
|
|
assert(outFormat->bits == 16);
|
|
|
|
assert(outFormat->channels == 2 || outFormat->channels == 1);
|
|
|
|
|
|
|
|
/* everything else supports 16 bit only, so convert to that first */
|
|
|
|
buf = pcm_convertTo16bit(inFormat->bits, inBuffer, inSize, &len);
|
|
|
|
if (!buf)
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
|
|
|
if (inFormat->channels != outFormat->channels) {
|
|
|
|
buf = pcm_convertChannels(inFormat->channels, buf, len, &len);
|
|
|
|
if (!buf)
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inFormat->sampleRate == outFormat->sampleRate) {
|
|
|
|
assert(outSize >= len);
|
|
|
|
memcpy(outBuffer, buf, len);
|
|
|
|
} else {
|
2007-05-26 18:39:55 +02:00
|
|
|
len = pcm_convertSampleRate(outFormat->channels,
|
|
|
|
inFormat->sampleRate, buf, len,
|
|
|
|
outFormat->sampleRate, outBuffer,
|
|
|
|
outSize, convState);
|
|
|
|
if (len == 0)
|
2007-05-23 01:11:36 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2007-05-26 18:39:55 +02:00
|
|
|
|
|
|
|
return len;
|
2004-05-10 16:06:23 +02:00
|
|
|
}
|
|
|
|
|
2008-04-12 06:07:11 +02:00
|
|
|
size_t pcm_sizeOfConvBuffer(const AudioFormat * inFormat, size_t inSize,
|
|
|
|
const AudioFormat * outFormat)
|
2004-05-10 16:06:23 +02:00
|
|
|
{
|
2007-05-23 13:04:04 +02:00
|
|
|
const double ratio = (double)outFormat->sampleRate /
|
|
|
|
(double)inFormat->sampleRate;
|
|
|
|
const int shift = 2 * outFormat->channels;
|
2004-05-10 19:15:04 +02:00
|
|
|
size_t outSize = inSize;
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
switch (inFormat->bits) {
|
2004-05-10 19:15:04 +02:00
|
|
|
case 8:
|
2007-05-23 13:04:04 +02:00
|
|
|
outSize <<= 1;
|
2004-05-10 19:15:04 +02:00
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
break;
|
|
|
|
default:
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("only 8 or 16 bits are supported for conversion!\n");
|
2004-05-10 19:15:04 +02:00
|
|
|
}
|
2004-05-10 17:21:40 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (inFormat->channels != outFormat->channels) {
|
|
|
|
switch (inFormat->channels) {
|
2004-10-23 04:40:03 +02:00
|
|
|
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;
|
2007-05-26 19:04:54 +02:00
|
|
|
default:
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("only 1 or 2 channels are supported "
|
2007-05-26 19:04:54 +02:00
|
|
|
"for conversion!\n");
|
2004-10-23 04:40:03 +02:00
|
|
|
}
|
2004-05-10 19:15:04 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2007-05-22 17:02:25 +02:00
|
|
|
outSize /= shift;
|
2007-05-23 13:04:04 +02:00
|
|
|
outSize = floor(0.5 + (double)outSize * ratio);
|
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
|
|
|
}
|