2009-01-07 18:53:36 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-01-07 18:53:36 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 18:06:14 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-02-24 18:06:14 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-30 23:40:56 +01:00
|
|
|
#include "PcmConvert.hxx"
|
2013-01-31 20:33:26 +01:00
|
|
|
#include "PcmChannels.hxx"
|
|
|
|
#include "PcmFormat.hxx"
|
2010-01-15 09:23:36 +01:00
|
|
|
#include "pcm_pack.h"
|
2008-09-07 19:19:55 +02:00
|
|
|
#include "audio_format.h"
|
2008-10-08 10:49:29 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
2008-12-02 02:22:43 +01:00
|
|
|
#include <glib.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-12-29 17:28:49 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "pcm"
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
PcmConvert::PcmConvert()
|
2008-10-21 22:53:16 +02:00
|
|
|
{
|
2013-01-30 23:40:56 +01:00
|
|
|
memset(this, 0, sizeof(*this));
|
2008-10-23 16:58:07 +02:00
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
pcm_dsd_init(&dsd);
|
|
|
|
pcm_resample_init(&resample);
|
2009-01-07 23:56:34 +01:00
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
pcm_buffer_init(&format_buffer);
|
|
|
|
pcm_buffer_init(&channels_buffer);
|
2008-10-21 22:53:16 +02:00
|
|
|
}
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
PcmConvert::~PcmConvert()
|
2009-01-07 22:20:30 +01:00
|
|
|
{
|
2013-01-30 23:40:56 +01:00
|
|
|
pcm_dsd_deinit(&dsd);
|
|
|
|
pcm_resample_deinit(&resample);
|
2009-01-07 23:56:34 +01:00
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
pcm_buffer_deinit(&format_buffer);
|
|
|
|
pcm_buffer_deinit(&channels_buffer);
|
2009-01-07 22:20:30 +01:00
|
|
|
}
|
|
|
|
|
2012-03-01 00:59:53 +01:00
|
|
|
void
|
2013-01-30 23:40:56 +01:00
|
|
|
PcmConvert::Reset()
|
2012-03-01 00:59:53 +01:00
|
|
|
{
|
2013-01-30 23:40:56 +01:00
|
|
|
pcm_dsd_reset(&dsd);
|
|
|
|
pcm_resample_reset(&resample);
|
2012-03-01 00:59:53 +01:00
|
|
|
}
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
inline const int16_t *
|
|
|
|
PcmConvert::Convert16(const audio_format *src_format,
|
|
|
|
const void *src_buffer, size_t src_size,
|
|
|
|
const audio_format *dest_format, size_t *dest_size_r,
|
|
|
|
GError **error_r)
|
2007-05-23 01:11:36 +02:00
|
|
|
{
|
2008-10-12 11:28:37 +02:00
|
|
|
const int16_t *buf;
|
2008-10-23 20:11:24 +02:00
|
|
|
size_t len;
|
2007-05-23 01:11:36 +02:00
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
assert(dest_format->format == SAMPLE_FORMAT_S16);
|
2007-05-23 01:11:36 +02:00
|
|
|
|
2013-01-31 22:43:28 +01:00
|
|
|
buf = pcm_convert_to_16(&format_buffer, dither,
|
2013-01-30 23:40:56 +01:00
|
|
|
sample_format(src_format->format),
|
|
|
|
src_buffer, src_size,
|
2009-01-07 23:56:34 +01:00
|
|
|
&len);
|
2009-07-23 12:01:03 +02:00
|
|
|
if (buf == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
2009-11-10 17:11:34 +01:00
|
|
|
"Conversion from %s to 16 bit is not implemented",
|
2013-01-30 23:40:56 +01:00
|
|
|
sample_format_to_string(sample_format(src_format->format)));
|
2009-07-23 12:01:03 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2007-05-23 01:11:36 +02:00
|
|
|
|
2008-10-23 20:11:24 +02:00
|
|
|
if (src_format->channels != dest_format->channels) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_convert_channels_16(&channels_buffer,
|
2009-01-07 23:56:35 +01:00
|
|
|
dest_format->channels,
|
2008-10-23 20:11:24 +02:00
|
|
|
src_format->channels,
|
2008-10-23 20:03:14 +02:00
|
|
|
buf, len, &len);
|
2009-07-23 12:01:03 +02:00
|
|
|
if (buf == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
|
|
|
"Conversion from %u to %u channels "
|
|
|
|
"is not implemented",
|
|
|
|
src_format->channels,
|
|
|
|
dest_format->channels);
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-05-23 01:11:36 +02:00
|
|
|
}
|
|
|
|
|
2009-07-23 12:01:03 +02:00
|
|
|
if (src_format->sample_rate != dest_format->sample_rate) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_resample_16(&resample,
|
2009-01-08 00:46:38 +01:00
|
|
|
dest_format->channels,
|
2008-10-23 20:11:24 +02:00
|
|
|
src_format->sample_rate, buf, len,
|
2009-07-23 12:01:03 +02:00
|
|
|
dest_format->sample_rate, &len,
|
|
|
|
error_r);
|
|
|
|
if (buf == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-01-08 00:46:38 +01:00
|
|
|
|
2009-01-17 13:11:16 +01:00
|
|
|
*dest_size_r = len;
|
|
|
|
return buf;
|
2004-05-10 16:06:23 +02:00
|
|
|
}
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
inline const int32_t *
|
|
|
|
PcmConvert::Convert24(const audio_format *src_format,
|
|
|
|
const void *src_buffer, size_t src_size,
|
|
|
|
const audio_format *dest_format, size_t *dest_size_r,
|
|
|
|
GError **error_r)
|
2008-10-23 20:11:37 +02:00
|
|
|
{
|
|
|
|
const int32_t *buf;
|
|
|
|
size_t len;
|
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
assert(dest_format->format == SAMPLE_FORMAT_S24_P32);
|
2008-10-23 20:11:37 +02:00
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_convert_to_24(&format_buffer,
|
|
|
|
sample_format(src_format->format),
|
2008-10-23 20:11:37 +02:00
|
|
|
src_buffer, src_size, &len);
|
2009-07-23 12:01:03 +02:00
|
|
|
if (buf == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
2009-11-10 17:11:34 +01:00
|
|
|
"Conversion from %s to 24 bit is not implemented",
|
2013-01-30 23:40:56 +01:00
|
|
|
sample_format_to_string(sample_format(src_format->format)));
|
2009-07-23 12:01:03 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-10-23 20:11:37 +02:00
|
|
|
|
|
|
|
if (src_format->channels != dest_format->channels) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_convert_channels_24(&channels_buffer,
|
2009-01-07 23:56:35 +01:00
|
|
|
dest_format->channels,
|
2008-10-23 20:11:37 +02:00
|
|
|
src_format->channels,
|
|
|
|
buf, len, &len);
|
2009-07-23 12:01:03 +02:00
|
|
|
if (buf == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
|
|
|
"Conversion from %u to %u channels "
|
|
|
|
"is not implemented",
|
|
|
|
src_format->channels,
|
|
|
|
dest_format->channels);
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-10-23 20:11:37 +02:00
|
|
|
}
|
|
|
|
|
2009-07-23 12:01:03 +02:00
|
|
|
if (src_format->sample_rate != dest_format->sample_rate) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_resample_24(&resample,
|
2009-01-08 00:46:38 +01:00
|
|
|
dest_format->channels,
|
2008-10-23 20:11:37 +02:00
|
|
|
src_format->sample_rate, buf, len,
|
2009-07-23 12:01:03 +02:00
|
|
|
dest_format->sample_rate, &len,
|
|
|
|
error_r);
|
|
|
|
if (buf == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-01-08 00:46:38 +01:00
|
|
|
|
2009-01-17 13:11:16 +01:00
|
|
|
*dest_size_r = len;
|
|
|
|
return buf;
|
2008-10-23 20:11:37 +02:00
|
|
|
}
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
inline const int32_t *
|
|
|
|
PcmConvert::Convert32(const audio_format *src_format,
|
|
|
|
const void *src_buffer, size_t src_size,
|
|
|
|
const audio_format *dest_format, size_t *dest_size_r,
|
|
|
|
GError **error_r)
|
2009-03-02 16:41:10 +01:00
|
|
|
{
|
|
|
|
const int32_t *buf;
|
|
|
|
size_t len;
|
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
assert(dest_format->format == SAMPLE_FORMAT_S32);
|
2009-03-02 16:41:10 +01:00
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_convert_to_32(&format_buffer,
|
|
|
|
sample_format(src_format->format),
|
2009-03-02 16:41:10 +01:00
|
|
|
src_buffer, src_size, &len);
|
2009-07-23 12:01:03 +02:00
|
|
|
if (buf == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
2011-10-08 15:36:55 +02:00
|
|
|
"Conversion from %s to 32 bit is not implemented",
|
2013-01-30 23:40:56 +01:00
|
|
|
sample_format_to_string(sample_format(src_format->format)));
|
2009-07-23 12:01:03 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2009-03-02 16:41:10 +01:00
|
|
|
|
|
|
|
if (src_format->channels != dest_format->channels) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_convert_channels_32(&channels_buffer,
|
2009-03-02 16:41:10 +01:00
|
|
|
dest_format->channels,
|
|
|
|
src_format->channels,
|
|
|
|
buf, len, &len);
|
2009-07-23 12:01:03 +02:00
|
|
|
if (buf == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
|
|
|
"Conversion from %u to %u channels "
|
|
|
|
"is not implemented",
|
|
|
|
src_format->channels,
|
|
|
|
dest_format->channels);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-03-02 16:41:10 +01:00
|
|
|
}
|
|
|
|
|
2009-07-23 12:01:03 +02:00
|
|
|
if (src_format->sample_rate != dest_format->sample_rate) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buf = pcm_resample_32(&resample,
|
2009-03-02 16:41:10 +01:00
|
|
|
dest_format->channels,
|
|
|
|
src_format->sample_rate, buf, len,
|
2009-07-23 12:01:03 +02:00
|
|
|
dest_format->sample_rate, &len,
|
|
|
|
error_r);
|
|
|
|
if (buf == NULL)
|
|
|
|
return buf;
|
|
|
|
}
|
2009-03-02 16:41:10 +01:00
|
|
|
|
|
|
|
*dest_size_r = len;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
inline const float *
|
|
|
|
PcmConvert::ConvertFloat(const audio_format *src_format,
|
|
|
|
const void *src_buffer, size_t src_size,
|
|
|
|
const audio_format *dest_format, size_t *dest_size_r,
|
|
|
|
GError **error_r)
|
2011-10-08 15:36:29 +02:00
|
|
|
{
|
2013-01-30 23:40:56 +01:00
|
|
|
const float *buffer = (const float *)src_buffer;
|
2011-10-08 15:36:29 +02:00
|
|
|
size_t size = src_size;
|
|
|
|
|
|
|
|
assert(dest_format->format == SAMPLE_FORMAT_FLOAT);
|
|
|
|
|
|
|
|
/* convert to float now */
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
buffer = pcm_convert_to_float(&format_buffer,
|
|
|
|
sample_format(src_format->format),
|
2011-10-08 15:36:29 +02:00
|
|
|
buffer, size, &size);
|
|
|
|
if (buffer == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
|
|
|
"Conversion from %s to float is not implemented",
|
2013-01-30 23:40:56 +01:00
|
|
|
sample_format_to_string(sample_format(src_format->format)));
|
2011-10-08 15:36:29 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-02 08:29:52 +02:00
|
|
|
/* convert channels */
|
|
|
|
|
|
|
|
if (src_format->channels != dest_format->channels) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buffer = pcm_convert_channels_float(&channels_buffer,
|
2012-10-02 08:29:52 +02:00
|
|
|
dest_format->channels,
|
|
|
|
src_format->channels,
|
|
|
|
buffer, size, &size);
|
|
|
|
if (buffer == NULL) {
|
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
|
|
|
"Conversion from %u to %u channels "
|
|
|
|
"is not implemented",
|
|
|
|
src_format->channels,
|
|
|
|
dest_format->channels);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-08 15:36:29 +02:00
|
|
|
/* resample with float, because this is the best format for
|
|
|
|
libsamplerate */
|
|
|
|
|
|
|
|
if (src_format->sample_rate != dest_format->sample_rate) {
|
2013-01-30 23:40:56 +01:00
|
|
|
buffer = pcm_resample_float(&resample,
|
2011-10-08 15:36:29 +02:00
|
|
|
dest_format->channels,
|
|
|
|
src_format->sample_rate,
|
|
|
|
buffer, size,
|
|
|
|
dest_format->sample_rate, &size,
|
|
|
|
error_r);
|
|
|
|
if (buffer == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*dest_size_r = size;
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2009-01-17 13:11:16 +01:00
|
|
|
const void *
|
2013-01-30 23:40:56 +01:00
|
|
|
PcmConvert::Convert(const audio_format *src_format,
|
|
|
|
const void *src, size_t src_size,
|
|
|
|
const audio_format *dest_format,
|
|
|
|
size_t *dest_size_r,
|
|
|
|
GError **error_r)
|
2008-10-23 20:11:24 +02:00
|
|
|
{
|
2012-03-01 00:57:33 +01:00
|
|
|
struct audio_format float_format;
|
2012-03-21 09:06:48 +01:00
|
|
|
if (src_format->format == SAMPLE_FORMAT_DSD) {
|
2012-03-01 00:57:33 +01:00
|
|
|
size_t f_size;
|
2013-01-30 23:40:56 +01:00
|
|
|
const float *f = pcm_dsd_to_float(&dsd,
|
2012-03-01 00:57:33 +01:00
|
|
|
src_format->channels,
|
2013-01-30 23:40:56 +01:00
|
|
|
false, (const uint8_t *)src,
|
|
|
|
src_size, &f_size);
|
2012-03-01 00:57:33 +01:00
|
|
|
if (f == NULL) {
|
|
|
|
g_set_error_literal(error_r, pcm_convert_quark(), 0,
|
|
|
|
"DSD to PCM conversion failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
float_format = *src_format;
|
|
|
|
float_format.format = SAMPLE_FORMAT_FLOAT;
|
|
|
|
|
|
|
|
src_format = &float_format;
|
|
|
|
src = f;
|
|
|
|
src_size = f_size;
|
|
|
|
}
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
switch (sample_format(dest_format->format)) {
|
2009-11-10 17:11:34 +01:00
|
|
|
case SAMPLE_FORMAT_S16:
|
2013-01-30 23:40:56 +01:00
|
|
|
return Convert16(src_format, src, src_size,
|
|
|
|
dest_format, dest_size_r,
|
|
|
|
error_r);
|
2009-01-17 13:11:16 +01:00
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
case SAMPLE_FORMAT_S24_P32:
|
2013-01-30 23:40:56 +01:00
|
|
|
return Convert24(src_format, src, src_size,
|
|
|
|
dest_format, dest_size_r,
|
|
|
|
error_r);
|
2008-10-23 20:11:24 +02:00
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
case SAMPLE_FORMAT_S32:
|
2013-01-30 23:40:56 +01:00
|
|
|
return Convert32(src_format, src, src_size,
|
|
|
|
dest_format, dest_size_r,
|
|
|
|
error_r);
|
2009-03-02 16:41:10 +01:00
|
|
|
|
2011-10-08 15:36:29 +02:00
|
|
|
case SAMPLE_FORMAT_FLOAT:
|
2013-01-30 23:40:56 +01:00
|
|
|
return ConvertFloat(src_format, src, src_size,
|
|
|
|
dest_format, dest_size_r,
|
|
|
|
error_r);
|
2011-10-08 15:36:29 +02:00
|
|
|
|
2008-10-23 20:11:24 +02:00
|
|
|
default:
|
2009-07-23 12:01:03 +02:00
|
|
|
g_set_error(error_r, pcm_convert_quark(), 0,
|
2009-11-10 17:11:34 +01:00
|
|
|
"PCM conversion to %s is not implemented",
|
2013-01-30 23:40:56 +01:00
|
|
|
sample_format_to_string(sample_format(dest_format->format)));
|
2009-03-14 14:36:44 +01:00
|
|
|
return NULL;
|
2008-10-23 20:11:24 +02:00
|
|
|
}
|
|
|
|
}
|