SoxrResampler.cxx 4.29 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * 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 "config.h"
#include "SoxrResampler.hxx"
#include "AudioFormat.hxx"
23
#include "config/Block.hxx"
24 25 26 27 28 29 30 31
#include "util/ASCII.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"

#include <soxr.h>

#include <assert.h>
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
static soxr_quality_spec_t soxr_quality;
44
static soxr_runtime_spec_t soxr_runtime;
45

46 47 48 49 50 51 52 53 54 55 56 57 58
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" },
	{ SOXR_INVALID_RECIPE, nullptr }
};

gcc_const
59 60 61
static const char *
soxr_quality_name(unsigned long recipe)
{
62 63
	for (const auto *i = soxr_quality_table;; ++i) {
		assert(i->name != nullptr);
64

65 66 67
		if (i->recipe == recipe)
			return i->name;
	}
68 69
}

70 71
gcc_pure
static unsigned long
72
soxr_parse_quality(const char *quality)
73
{
74
	if (quality == nullptr)
75
		return SOXR_DEFAULT_RECIPE;
76

77
	for (const auto *i = soxr_quality_table; i->name != nullptr; ++i)
78
		if (strcmp(i->name, quality) == 0)
79 80 81
			return i->recipe;

	return SOXR_INVALID_RECIPE;
82 83 84
}

bool
85
pcm_resample_soxr_global_init(const ConfigBlock &block, Error &error)
86
{
87 88
	const char *quality_string = block.GetBlockValue("quality");
	unsigned long recipe = soxr_parse_quality(quality_string);
89
	if (recipe == SOXR_INVALID_RECIPE) {
90 91
		assert(quality_string != nullptr);

92
		error.Format(soxr_domain,
93 94
			     "unknown quality setting '%s' in line %d",
			     quality_string, block.line);
95 96 97
		return false;
	}

98 99
	soxr_quality = soxr_quality_spec(recipe, 0);

100 101
	FormatDebug(soxr_domain,
		    "soxr converter '%s'",
102
		    soxr_quality_name(recipe));
103

104
	const unsigned n_threads = block.GetBlockValue("threads", 1);
105 106
	soxr_runtime = soxr_runtime_spec(n_threads);

107 108 109
	return true;
}

110 111 112 113 114 115 116 117 118 119
AudioFormat
SoxrPcmResampler::Open(AudioFormat &af, unsigned new_sample_rate,
		       Error &error)
{
	assert(af.IsValid());
	assert(audio_valid_sample_rate(new_sample_rate));

	soxr_error_t e;
	soxr = soxr_create(af.sample_rate, new_sample_rate,
			   af.channels, &e,
120
			   nullptr, &soxr_quality, &soxr_runtime);
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
	if (soxr == nullptr) {
		error.Format(soxr_domain,
			     "soxr initialization has failed: %s", e);
		return AudioFormat::Undefined();
	}

	FormatDebug(soxr_domain, "soxr engine '%s'", soxr_engine(soxr));

	channels = af.channels;

	ratio = float(new_sample_rate) / float(af.sample_rate);
	FormatDebug(soxr_domain,
		    "samplerate conversion ratio to %.2lf",
		    ratio);

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

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

void
SoxrPcmResampler::Close()
{
	soxr_delete(soxr);
}

ConstBuffer<void>
SoxrPcmResampler::Resample(ConstBuffer<void> src, Error &error)
{
	const size_t frame_size = channels * sizeof(float);
	assert(src.size % frame_size == 0);

	const size_t n_frames = src.size / frame_size;

158 159
	/* always round up: worst case output buffer size */
	const size_t o_frames = size_t(n_frames * ratio) + 1;
160 161 162 163 164 165 166 167 168 169 170 171 172

	float *output_buffer = (float *)buffer.Get(o_frames * frame_size);

	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);
	if (e != nullptr) {
		error.Format(soxr_domain, "soxr error: %s", e);
		return nullptr;
	}

	return { output_buffer, o_done * frame_size };
}