SoxrResampler.cxx 8.3 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "SoxrResampler.hxx"
#include "AudioFormat.hxx"
22
#include "config/Block.hxx"
23
#include "util/RuntimeError.hxx"
24 25 26 27 28
#include "util/Domain.hxx"
#include "Log.hxx"

#include <soxr.h>

29
#include <cassert>
30
#include <cmath>
31

32
#include <string.h>
33 34 35

static constexpr Domain soxr_domain("soxr");

36 37
static constexpr unsigned long SOXR_DEFAULT_RECIPE = SOXR_HQ;

38 39 40 41 42
/**
 * Special value for "invalid argument".
 */
static constexpr unsigned long SOXR_INVALID_RECIPE = -1;

43 44 45 46 47 48
/**
 * Special value for the recipe selection for custom recipe.
 */
static constexpr unsigned long SOXR_CUSTOM_RECIPE = -2;

static soxr_io_spec_t soxr_io_custom_recipe;
49
static soxr_quality_spec_t soxr_quality;
50
static soxr_runtime_spec_t soxr_runtime;
51 52
static bool soxr_use_custom_recipe;

53

54 55 56 57 58 59 60 61 62
static constexpr struct {
	unsigned long recipe;
	const char *name;
} soxr_quality_table[] = {
	{ SOXR_VHQ, "very high" },
	{ SOXR_HQ, "high" },
	{ SOXR_MQ, "medium" },
	{ SOXR_LQ, "low" },
	{ SOXR_QQ, "quick" },
63
	{ SOXR_CUSTOM_RECIPE, "custom" },
64 65 66 67
	{ SOXR_INVALID_RECIPE, nullptr }
};

gcc_const
68
static const char *
69
soxr_quality_name(unsigned long recipe) noexcept
70
{
71 72
	for (const auto *i = soxr_quality_table;; ++i) {
		assert(i->name != nullptr);
73

74 75 76
		if (i->recipe == recipe)
			return i->name;
	}
77 78
}

79 80
gcc_pure
static unsigned long
81
soxr_parse_quality(const char *quality) noexcept
82
{
83
	if (quality == nullptr)
84
		return SOXR_DEFAULT_RECIPE;
85

86
	for (const auto *i = soxr_quality_table; i->name != nullptr; ++i)
87
		if (strcmp(i->name, quality) == 0)
88 89 90
			return i->recipe;

	return SOXR_INVALID_RECIPE;
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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
static unsigned
SoxrParsePrecision(unsigned value) {
	switch (value) {
	case 16:
	case 20:
	case 24:
	case 28:
	case 32:
		break;
	default:
		throw FormatInvalidArgument(
			"soxr converter invalid precision : %d [16|20|24|28|32]", value);
	}
	return value;
}

static double
SoxrParsePhaseResponse(unsigned value) {
	if (value > 100) {
		throw FormatInvalidArgument(
			"soxr converter invalid phase_respons : %d (0-100)", value);
	}

	return double(value);
}

static double
SoxrParsePassbandEnd(const char *svalue) {
	char *endptr;
	double value = strtod(svalue, &endptr);
	if (svalue == endptr || *endptr != 0) {
		throw FormatInvalidArgument(
			"soxr converter passband_end value not a number: %s", svalue);
	}

	if (value < 1 || value > 100) {
		throw FormatInvalidArgument(
			"soxr converter invalid passband_end : %s (1-100%%)", svalue);
	}

	return value / 100.0;
}

static double
SoxrParseStopbandBegin(const char *svalue) {
	char *endptr;
	double value = strtod(svalue, &endptr);
	if (svalue == endptr || *endptr != 0) {
		throw FormatInvalidArgument(
			"soxr converter stopband_begin value not a number: %s", svalue);
	}

	if (value < 100 || value > 199) {
		throw FormatInvalidArgument(
			"soxr converter invalid stopband_begin : %s (100-150%%)", svalue);
	}

	return value / 100.0;
}

static double
SoxrParseAttenuation(const char *svalue) {
	char *endptr;
	double value = strtod(svalue, &endptr);
	if (svalue == endptr || *endptr != 0) {
		throw FormatInvalidArgument(
			"soxr converter attenuation value not a number: %s", svalue);
	}

	if (value < 0 || value > 30) {
		throw FormatInvalidArgument(
			"soxr converter invalid attenuation : %s (0-30dB))", svalue);
	}

	return 1 / std::pow(10, value / 10.0);
}

170 171
void
pcm_resample_soxr_global_init(const ConfigBlock &block)
172
{
173 174
	const char *quality_string = block.GetBlockValue("quality");
	unsigned long recipe = soxr_parse_quality(quality_string);
175 176
	soxr_use_custom_recipe = recipe == SOXR_CUSTOM_RECIPE;

177
	if (recipe == SOXR_INVALID_RECIPE) {
178
		assert(quality_string != nullptr);
179 180
		throw FormatRuntimeError("unknown quality setting '%s' in line %d",
					 quality_string, block.line);
181 182 183 184
	} else if (recipe == SOXR_CUSTOM_RECIPE) {
		// used to preset possible internal flags, like SOXR_RESET_ON_CLEAR
		soxr_quality = soxr_quality_spec(SOXR_DEFAULT_RECIPE, 0);
		soxr_io_custom_recipe = soxr_io_spec(SOXR_FLOAT32_I, SOXR_FLOAT32_I);
185

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
		soxr_quality.precision =
			SoxrParsePrecision(block.GetBlockValue("precision", SOXR_HQ));
		soxr_quality.phase_response =
			SoxrParsePhaseResponse(block.GetBlockValue("phase_response", 50));
		soxr_quality.passband_end =
			SoxrParsePassbandEnd(block.GetBlockValue("passband_end", "95.0"));
		soxr_quality.stopband_begin = SoxrParseStopbandBegin(
			block.GetBlockValue("stopband_begin", "100.0"));
		// see soxr.h soxr_quality_spec.flags
		soxr_quality.flags = (soxr_quality.flags & 0xFFFFFFC0) |
			(block.GetBlockValue("flags", 0) & 0x3F);
		soxr_io_custom_recipe.scale =
			SoxrParseAttenuation(block.GetBlockValue("attenuation", "0"));
	} else {
		soxr_quality = soxr_quality_spec(recipe, 0);
	}
202

203 204
	FormatDebug(soxr_domain,
		    "soxr converter '%s'",
205
		    soxr_quality_name(recipe));
206

207
	const unsigned n_threads = block.GetBlockValue("threads", 1);
208
	soxr_runtime = soxr_runtime_spec(n_threads);
209 210
}

211
AudioFormat
212
SoxrPcmResampler::Open(AudioFormat &af, unsigned new_sample_rate)
213 214 215 216 217
{
	assert(af.IsValid());
	assert(audio_valid_sample_rate(new_sample_rate));

	soxr_error_t e;
218 219 220 221
	soxr_io_spec_t* p_soxr_io = nullptr;
	if(soxr_use_custom_recipe) {
		p_soxr_io = & soxr_io_custom_recipe;
	}
222 223
	soxr = soxr_create(af.sample_rate, new_sample_rate,
			   af.channels, &e,
224
			   p_soxr_io, &soxr_quality, &soxr_runtime);
225 226 227
	if (soxr == nullptr)
		throw FormatRuntimeError("soxr initialization has failed: %s",
					 e);
228 229

	FormatDebug(soxr_domain, "soxr engine '%s'", soxr_engine(soxr));
230 231 232 233 234 235 236 237 238 239 240 241 242
	if (soxr_use_custom_recipe)
		FormatDebug(soxr_domain,
			    "soxr precision=%0.0f, phase_response=%0.2f, "
			    "passband_end=%0.2f, stopband_begin=%0.2f scale=%0.2f",
			    soxr_quality.precision, soxr_quality.phase_response,
			    soxr_quality.passband_end, soxr_quality.stopband_begin,
			    soxr_io_custom_recipe.scale);
	else
		FormatDebug(soxr_domain,
			    "soxr precision=%0.0f, phase_response=%0.2f, "
			    "passband_end=%0.2f, stopband_begin=%0.2f",
			    soxr_quality.precision, soxr_quality.phase_response,
			    soxr_quality.passband_end, soxr_quality.stopband_begin);
243 244 245 246 247 248

	channels = af.channels;

	ratio = float(new_sample_rate) / float(af.sample_rate);
	FormatDebug(soxr_domain,
		    "samplerate conversion ratio to %.2lf",
Rosen Penev's avatar
Rosen Penev committed
249
		    double(ratio));
250 251 252 253 254 255 256 257 258 259

	/* libsoxr works with floating point samples */
	af.format = SampleFormat::FLOAT;

	AudioFormat result = af;
	result.sample_rate = new_sample_rate;
	return result;
}

void
Max Kellermann's avatar
Max Kellermann committed
260
SoxrPcmResampler::Close() noexcept
261 262 263 264
{
	soxr_delete(soxr);
}

265
void
266
SoxrPcmResampler::Reset() noexcept
267 268 269 270 271 272
{
#if SOXR_THIS_VERSION >= SOXR_VERSION(0,1,2)
	soxr_clear(soxr);
#endif
}

273
ConstBuffer<void>
274
SoxrPcmResampler::Resample(ConstBuffer<void> src)
275 276 277 278 279 280
{
	const size_t frame_size = channels * sizeof(float);
	assert(src.size % frame_size == 0);

	const size_t n_frames = src.size / frame_size;

281 282
	/* always round up: worst case output buffer size */
	const size_t o_frames = size_t(n_frames * ratio) + 1;
283

Max Kellermann's avatar
Max Kellermann committed
284
	auto *output_buffer = (float *)buffer.Get(o_frames * frame_size);
285 286 287 288

	size_t i_done, o_done;
	soxr_error_t e = soxr_process(soxr, src.data, n_frames, &i_done,
				      output_buffer, o_frames, &o_done);
289 290
	if (e != nullptr)
		throw FormatRuntimeError("soxr error: %s", e);
291 292 293

	return { output_buffer, o_done * frame_size };
}
294 295 296 297 298 299 300

ConstBuffer<void>
SoxrPcmResampler::Flush()
{
	const size_t frame_size = channels * sizeof(float);
	const size_t o_frames = 1024;

Max Kellermann's avatar
Max Kellermann committed
301
	auto *output_buffer = (float *)buffer.Get(o_frames * frame_size);
302 303 304 305 306 307 308 309 310 311 312 313 314

	size_t o_done;
	soxr_error_t e = soxr_process(soxr, nullptr, 0, nullptr,
				      output_buffer, o_frames, &o_done);
	if (e != nullptr)
		throw FormatRuntimeError("soxr error: %s", e);

	if (o_done == 0)
		/* flush complete */
		output_buffer = nullptr;

	return { output_buffer, o_done * frame_size };
}