pcm_resample.c 3.82 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2011 The Music Player Daemon Project
3
 * http://www.musicpd.org
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20
#include "config.h"
21
#include "pcm_resample_internal.h"
22

23 24 25 26
#ifdef HAVE_LIBSAMPLERATE
#include "conf.h"
#endif

27 28
#include <string.h>

29 30 31 32
#ifdef HAVE_LIBSAMPLERATE
static bool lsr_enabled;
#endif

33 34 35 36
#ifdef HAVE_LIBSAMPLERATE
static bool
pcm_resample_lsr_enabled(void)
{
37
	return lsr_enabled;
38 39 40
}
#endif

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
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
}

59 60
void pcm_resample_init(struct pcm_resample_state *state)
{
61
#ifdef HAVE_LIBSAMPLERATE
62 63 64
	if (pcm_resample_lsr_enabled())
		pcm_resample_lsr_init(state);
	else
65
#endif
66
		pcm_resample_fallback_init(state);
67
}
68 69 70 71

void pcm_resample_deinit(struct pcm_resample_state *state)
{
#ifdef HAVE_LIBSAMPLERATE
72 73 74
	if (pcm_resample_lsr_enabled())
		pcm_resample_lsr_deinit(state);
	else
75
#endif
76
		pcm_resample_fallback_deinit(state);
77 78
}

79 80 81 82 83 84 85 86 87 88
void
pcm_resample_reset(struct pcm_resample_state *state)
{
#ifdef HAVE_LIBSAMPLERATE
	pcm_resample_lsr_reset(state);
#else
	(void)state;
#endif
}

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
const float *
pcm_resample_float(struct pcm_resample_state *state,
		   unsigned channels,
		   unsigned src_rate,
		   const float *src_buffer, size_t src_size,
		   unsigned dest_rate, size_t *dest_size_r,
		   GError **error_r)
{
#ifdef HAVE_LIBSAMPLERATE
	if (pcm_resample_lsr_enabled())
		return pcm_resample_lsr_float(state, channels,
					      src_rate, src_buffer, src_size,
					      dest_rate, dest_size_r,
					      error_r);
#else
	(void)error_r;
#endif

	/* sizeof(float)==sizeof(int32_t); the fallback resampler does
	   not do any math on the sample values, so this hack is
	   possible: */
	return (const float *)
		pcm_resample_fallback_32(state, channels,
					 src_rate, (const int32_t *)src_buffer,
					 src_size,
					 dest_rate, dest_size_r);
}

117 118
const int16_t *
pcm_resample_16(struct pcm_resample_state *state,
119
		unsigned channels,
120
		unsigned src_rate, const int16_t *src_buffer, size_t src_size,
121 122
		unsigned dest_rate, size_t *dest_size_r,
		GError **error_r)
123 124
{
#ifdef HAVE_LIBSAMPLERATE
125 126 127
	if (pcm_resample_lsr_enabled())
		return pcm_resample_lsr_16(state, channels,
					   src_rate, src_buffer, src_size,
128 129 130 131
					   dest_rate, dest_size_r,
					   error_r);
#else
	(void)error_r;
132 133
#endif

134 135 136 137 138 139 140
	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,
141
		unsigned channels,
142
		unsigned src_rate, const int32_t *src_buffer, size_t src_size,
143 144
		unsigned dest_rate, size_t *dest_size_r,
		GError **error_r)
145 146
{
#ifdef HAVE_LIBSAMPLERATE
147 148 149
	if (pcm_resample_lsr_enabled())
		return pcm_resample_lsr_32(state, channels,
					   src_rate, src_buffer, src_size,
150 151 152 153
					   dest_rate, dest_size_r,
					   error_r);
#else
	(void)error_r;
154 155
#endif

156 157 158 159
	return pcm_resample_fallback_32(state, channels,
					src_rate, src_buffer, src_size,
					dest_rate, dest_size_r);
}