mpd/src/pcm/PcmConvert.cxx

174 lines
3.7 KiB
C++
Raw Normal View History

/*
2017-01-03 20:48:59 +01:00
* Copyright 2003-2017 The Music Player Daemon Project
* 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"
2013-01-30 23:40:56 +01:00
#include "PcmConvert.hxx"
#include "ConfiguredResampler.hxx"
#include "util/ConstBuffer.hxx"
#include <assert.h>
void
pcm_convert_global_init()
{
pcm_resampler_global_init();
}
2018-01-01 19:07:33 +01:00
PcmConvert::PcmConvert() noexcept
{
#ifndef NDEBUG
src_format.Clear();
dest_format.Clear();
#endif
}
2018-01-01 19:07:33 +01:00
PcmConvert::~PcmConvert() noexcept
{
assert(!src_format.IsValid());
assert(!dest_format.IsValid());
}
void
PcmConvert::Open(const AudioFormat _src_format, const AudioFormat _dest_format)
{
assert(!src_format.IsValid());
assert(!dest_format.IsValid());
assert(_src_format.IsValid());
assert(_dest_format.IsValid());
AudioFormat format = _src_format;
if (format.format == SampleFormat::DSD)
format.format = SampleFormat::FLOAT;
enable_resampler = format.sample_rate != _dest_format.sample_rate;
if (enable_resampler) {
resampler.Open(format, _dest_format.sample_rate);
format.format = resampler.GetOutputSampleFormat();
format.sample_rate = _dest_format.sample_rate;
}
enable_format = format.format != _dest_format.format;
if (enable_format) {
try {
format_converter.Open(format.format,
_dest_format.format);
} catch (...) {
if (enable_resampler)
resampler.Close();
throw;
}
}
format.format = _dest_format.format;
enable_channels = format.channels != _dest_format.channels;
if (enable_channels) {
try {
channels_converter.Open(format.format, format.channels,
_dest_format.channels);
} catch (...) {
if (enable_format)
format_converter.Close();
if (enable_resampler)
resampler.Close();
throw;
}
}
src_format = _src_format;
dest_format = _dest_format;
}
void
2018-01-01 19:07:33 +01:00
PcmConvert::Close() noexcept
{
if (enable_channels)
channels_converter.Close();
if (enable_format)
format_converter.Close();
if (enable_resampler)
resampler.Close();
#ifdef ENABLE_DSD
2013-07-29 07:56:40 +02:00
dsd.Reset();
#endif
#ifndef NDEBUG
src_format.Clear();
dest_format.Clear();
#endif
}
2017-01-11 15:30:30 +01:00
void
2018-01-01 19:07:33 +01:00
PcmConvert::Reset() noexcept
2017-01-11 15:30:30 +01:00
{
if (enable_resampler)
resampler.Reset();
#ifdef ENABLE_DSD
dsd.Reset();
#endif
}
ConstBuffer<void>
PcmConvert::Convert(ConstBuffer<void> buffer)
{
#ifdef ENABLE_DSD
if (src_format.format == SampleFormat::DSD) {
2013-11-29 22:06:14 +01:00
auto s = ConstBuffer<uint8_t>::FromVoid(buffer);
auto d = dsd.ToFloat(src_format.channels, s);
if (d.IsNull())
throw std::runtime_error("DSD to PCM conversion failed");
2012-03-01 00:57:33 +01:00
2013-11-29 22:06:14 +01:00
buffer = d.ToVoid();
2012-03-01 00:57:33 +01:00
}
#endif
2012-03-01 00:57:33 +01:00
if (enable_resampler)
buffer = resampler.Resample(buffer);
if (enable_format)
buffer = format_converter.Convert(buffer);
if (enable_channels)
buffer = channels_converter.Convert(buffer);
return buffer;
}
ConstBuffer<void>
PcmConvert::Flush()
{
if (enable_resampler) {
auto buffer = resampler.Flush();
if (!buffer.IsNull()) {
if (enable_format)
buffer = format_converter.Convert(buffer);
if (enable_channels)
buffer = channels_converter.Convert(buffer);
return buffer;
}
}
return nullptr;
}