2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-23 20:00:51 +02: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.
|
2008-10-23 20:00:51 +02:00
|
|
|
*/
|
|
|
|
|
2009-01-08 00:47:04 +01:00
|
|
|
#include "config.h"
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "pcm_resample_internal.h"
|
2008-10-23 20:00:51 +02:00
|
|
|
|
2009-03-14 15:26:36 +01:00
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
|
|
|
#include "conf.h"
|
|
|
|
#endif
|
|
|
|
|
2008-10-23 20:00:51 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-10-08 13:14:29 +02:00
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
|
|
|
static bool lsr_enabled;
|
|
|
|
#endif
|
|
|
|
|
2009-03-14 15:26:36 +01:00
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
|
|
|
static bool
|
|
|
|
pcm_resample_lsr_enabled(void)
|
|
|
|
{
|
2011-10-08 13:14:29 +02:00
|
|
|
return lsr_enabled;
|
2009-03-14 15:26:36 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-10-08 13:14:29 +02:00
|
|
|
bool
|
|
|
|
pcm_resample_global_init(GError **error_r)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
|
|
|
const char *converter =
|
|
|
|
config_get_string(CONF_SAMPLERATE_CONVERTER, "");
|
|
|
|
|
|
|
|
lsr_enabled = strcmp(converter, "internal") != 0;
|
|
|
|
if (lsr_enabled)
|
|
|
|
return pcm_resample_lsr_global_init(converter, error_r);
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
(void)error_r;
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-23 20:00:51 +02:00
|
|
|
void pcm_resample_init(struct pcm_resample_state *state)
|
|
|
|
{
|
2009-01-08 00:47:04 +01:00
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
2011-10-08 12:40:03 +02:00
|
|
|
if (pcm_resample_lsr_enabled())
|
|
|
|
pcm_resample_lsr_init(state);
|
|
|
|
else
|
2009-01-08 00:47:04 +01:00
|
|
|
#endif
|
2011-10-08 12:40:03 +02:00
|
|
|
pcm_resample_fallback_init(state);
|
2008-10-23 20:00:51 +02:00
|
|
|
}
|
2009-03-14 15:26:28 +01:00
|
|
|
|
|
|
|
void pcm_resample_deinit(struct pcm_resample_state *state)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
2009-03-14 15:26:36 +01:00
|
|
|
if (pcm_resample_lsr_enabled())
|
|
|
|
pcm_resample_lsr_deinit(state);
|
|
|
|
else
|
2009-03-14 15:26:28 +01:00
|
|
|
#endif
|
2009-03-14 15:26:36 +01:00
|
|
|
pcm_resample_fallback_deinit(state);
|
2009-03-14 15:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const int16_t *
|
|
|
|
pcm_resample_16(struct pcm_resample_state *state,
|
2011-10-19 22:06:39 +02:00
|
|
|
unsigned channels,
|
2009-07-22 19:52:25 +02:00
|
|
|
unsigned src_rate, const int16_t *src_buffer, size_t src_size,
|
2009-07-23 12:01:03 +02:00
|
|
|
unsigned dest_rate, size_t *dest_size_r,
|
|
|
|
GError **error_r)
|
2009-03-14 15:26:28 +01:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
2009-03-14 15:26:36 +01:00
|
|
|
if (pcm_resample_lsr_enabled())
|
|
|
|
return pcm_resample_lsr_16(state, channels,
|
|
|
|
src_rate, src_buffer, src_size,
|
2009-07-23 12:01:03 +02:00
|
|
|
dest_rate, dest_size_r,
|
|
|
|
error_r);
|
|
|
|
#else
|
|
|
|
(void)error_r;
|
2009-03-14 15:26:36 +01:00
|
|
|
#endif
|
|
|
|
|
2009-03-14 15:26:28 +01:00
|
|
|
return pcm_resample_fallback_16(state, channels,
|
|
|
|
src_rate, src_buffer, src_size,
|
|
|
|
dest_rate, dest_size_r);
|
|
|
|
}
|
|
|
|
|
|
|
|
const int32_t *
|
|
|
|
pcm_resample_32(struct pcm_resample_state *state,
|
2011-10-19 22:06:39 +02:00
|
|
|
unsigned channels,
|
2009-07-22 19:52:25 +02:00
|
|
|
unsigned src_rate, const int32_t *src_buffer, size_t src_size,
|
2009-07-23 12:01:03 +02:00
|
|
|
unsigned dest_rate, size_t *dest_size_r,
|
|
|
|
GError **error_r)
|
2009-03-14 15:26:28 +01:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBSAMPLERATE
|
2009-03-14 15:26:36 +01:00
|
|
|
if (pcm_resample_lsr_enabled())
|
|
|
|
return pcm_resample_lsr_32(state, channels,
|
|
|
|
src_rate, src_buffer, src_size,
|
2009-07-23 12:01:03 +02:00
|
|
|
dest_rate, dest_size_r,
|
|
|
|
error_r);
|
|
|
|
#else
|
|
|
|
(void)error_r;
|
2009-03-14 15:26:36 +01:00
|
|
|
#endif
|
|
|
|
|
2009-03-14 15:26:28 +01:00
|
|
|
return pcm_resample_fallback_32(state, channels,
|
|
|
|
src_rate, src_buffer, src_size,
|
|
|
|
dest_rate, dest_size_r);
|
|
|
|
}
|