GlueResampler.cxx 2.31 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2020 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * 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 "GlueResampler.hxx"
21 22
#include "ConfiguredResampler.hxx"
#include "Resampler.hxx"
23
#include "AudioFormat.hxx"
24

25
#include <cassert>
26 27 28 29

GluePcmResampler::GluePcmResampler()
	:resampler(pcm_resampler_create()) {}

Max Kellermann's avatar
Max Kellermann committed
30
GluePcmResampler::~GluePcmResampler() noexcept
31 32 33
{
	delete resampler;
}
34

35 36
void
GluePcmResampler::Open(AudioFormat src_format, unsigned new_sample_rate)
37
{
38 39 40 41 42
	assert(src_format.IsValid());
	assert(audio_valid_sample_rate(new_sample_rate));

	AudioFormat requested_format = src_format;
	AudioFormat dest_format = resampler->Open(requested_format,
43 44
						  new_sample_rate);
	assert(dest_format.IsValid());
45 46 47 48

	assert(requested_format.channels == src_format.channels);
	assert(dest_format.channels == src_format.channels);
	assert(dest_format.sample_rate == new_sample_rate);
49

50 51 52
	if (requested_format.format != src_format.format)
		format_converter.Open(src_format.format,
				      requested_format.format);
53 54 55 56

	src_sample_format = src_format.format;
	requested_sample_format = requested_format.format;
	output_sample_format = dest_format.format;
57 58 59
}

void
Max Kellermann's avatar
Max Kellermann committed
60
GluePcmResampler::Close() noexcept
61
{
62 63 64 65
	if (requested_sample_format != src_sample_format)
		format_converter.Close();

	resampler->Close();
66 67
}

68
void
Max Kellermann's avatar
Max Kellermann committed
69
GluePcmResampler::Reset() noexcept
70 71 72 73
{
	resampler->Reset();
}

74
ConstBuffer<void>
75
GluePcmResampler::Resample(ConstBuffer<void> src)
76
{
77
	assert(!src.IsNull());
78

79 80
	if (requested_sample_format != src_sample_format)
		src = format_converter.Convert(src);
81

82
	return resampler->Resample(src);
83
}
84 85 86 87 88 89

ConstBuffer<void>
GluePcmResampler::Flush()
{
	return resampler->Flush();
}