2009-01-07 18:05:38 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2009-01-07 18:05:38 +01:00
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-01-07 18:05:38 +01:00
|
|
|
*/
|
|
|
|
|
2013-12-22 23:24:42 +01:00
|
|
|
#include "Volume.hxx"
|
2016-07-05 17:52:24 +02:00
|
|
|
#include "Silence.hxx"
|
2013-12-02 08:58:40 +01:00
|
|
|
#include "Traits.hxx"
|
2013-12-22 23:26:52 +01:00
|
|
|
#include "util/ConstBuffer.hxx"
|
2016-07-05 17:52:24 +02:00
|
|
|
#include "util/WritableBuffer.hxx"
|
2016-09-05 12:19:20 +02:00
|
|
|
#include "util/RuntimeError.hxx"
|
2019-07-05 21:05:44 +02:00
|
|
|
#include "util/TransformN.hxx"
|
2009-01-07 18:05:38 +01:00
|
|
|
|
2019-06-17 11:10:33 +02:00
|
|
|
#include "Dither.cxx" // including the .cxx file to get inlined templates
|
2013-12-22 17:39:26 +01:00
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2020-03-13 01:08:53 +01:00
|
|
|
#include <cstdint>
|
2020-03-12 23:20:59 +01:00
|
|
|
|
2009-01-07 18:05:38 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2019-07-05 21:01:01 +02:00
|
|
|
#if GCC_OLDER_THAN(8,0)
|
|
|
|
/* GCC 6.3 emits this bogus warning in PcmVolumeConvert() because it
|
|
|
|
checks an unreachable branch */
|
|
|
|
#pragma GCC diagnostic ignored "-Wshift-count-overflow"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Apply software volume, converting to a different sample type.
|
|
|
|
*/
|
|
|
|
template<SampleFormat SF, SampleFormat DF,
|
|
|
|
class STraits=SampleTraits<SF>,
|
|
|
|
class DTraits=SampleTraits<DF>>
|
|
|
|
#if !GCC_OLDER_THAN(8,0)
|
|
|
|
constexpr
|
|
|
|
#endif
|
|
|
|
static typename DTraits::value_type
|
|
|
|
PcmVolumeConvert(typename STraits::value_type _sample, int volume) noexcept
|
|
|
|
{
|
|
|
|
typename STraits::long_type sample(_sample);
|
|
|
|
sample *= volume;
|
|
|
|
|
|
|
|
static_assert(DTraits::BITS > STraits::BITS,
|
|
|
|
"Destination sample must be larger than source sample");
|
|
|
|
|
|
|
|
/* after multiplying with the volume value, the "sample"
|
|
|
|
variable contains this number of precision bits: source
|
|
|
|
bits plus the volume bits */
|
|
|
|
constexpr unsigned BITS = STraits::BITS + PCM_VOLUME_BITS;
|
|
|
|
|
|
|
|
/* .. and now we need to scale to the requested destination
|
|
|
|
bits */
|
|
|
|
|
|
|
|
typename DTraits::value_type result;
|
|
|
|
if (BITS > DTraits::BITS)
|
|
|
|
result = sample >> (BITS - DTraits::BITS);
|
|
|
|
else if (BITS < DTraits::BITS)
|
|
|
|
result = sample << (DTraits::BITS - BITS);
|
|
|
|
else
|
|
|
|
result = sample;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-12-23 10:03:05 +01:00
|
|
|
template<SampleFormat F, class Traits=SampleTraits<F>>
|
|
|
|
static inline typename Traits::value_type
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_sample(PcmDither &dither,
|
|
|
|
typename Traits::value_type _sample,
|
2018-01-01 19:07:33 +01:00
|
|
|
int volume) noexcept
|
2013-12-23 10:03:05 +01:00
|
|
|
{
|
|
|
|
typename Traits::long_type sample(_sample);
|
|
|
|
|
2013-12-22 17:39:26 +01:00
|
|
|
return dither.DitherShift<typename Traits::long_type,
|
|
|
|
Traits::BITS + PCM_VOLUME_BITS,
|
|
|
|
Traits::BITS>(sample * volume);
|
2013-12-23 10:03:05 +01:00
|
|
|
}
|
|
|
|
|
2013-12-23 10:07:28 +01:00
|
|
|
template<SampleFormat F, class Traits=SampleTraits<F>>
|
2009-01-07 18:05:38 +01:00
|
|
|
static void
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change(PcmDither &dither,
|
2020-01-03 15:59:50 +01:00
|
|
|
typename Traits::pointer dest,
|
|
|
|
typename Traits::const_pointer src,
|
2014-01-07 00:42:02 +01:00
|
|
|
size_t n,
|
2018-01-01 19:07:33 +01:00
|
|
|
int volume) noexcept
|
2009-01-07 18:05:38 +01:00
|
|
|
{
|
2019-07-05 21:05:44 +02:00
|
|
|
transform_n(src, n, dest,
|
|
|
|
[&dither, volume](auto x){
|
|
|
|
return pcm_volume_sample<F, Traits>(dither, x,
|
|
|
|
volume);
|
|
|
|
});
|
2013-12-23 10:07:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change_8(PcmDither &dither,
|
2014-01-07 00:42:02 +01:00
|
|
|
int8_t *dest, const int8_t *src, size_t n,
|
2018-01-01 19:07:33 +01:00
|
|
|
int volume) noexcept
|
2013-12-23 10:07:28 +01:00
|
|
|
{
|
2014-01-07 00:42:02 +01:00
|
|
|
pcm_volume_change<SampleFormat::S8>(dither, dest, src, n, volume);
|
2013-12-23 10:07:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change_16(PcmDither &dither,
|
2014-01-07 00:42:02 +01:00
|
|
|
int16_t *dest, const int16_t *src, size_t n,
|
2018-01-01 19:07:33 +01:00
|
|
|
int volume) noexcept
|
2013-12-23 10:07:28 +01:00
|
|
|
{
|
2014-01-07 00:42:02 +01:00
|
|
|
pcm_volume_change<SampleFormat::S16>(dither, dest, src, n, volume);
|
2013-12-23 10:07:28 +01:00
|
|
|
}
|
|
|
|
|
2019-07-05 21:01:01 +02:00
|
|
|
static void
|
|
|
|
PcmVolumeChange16to32(int32_t *dest, const int16_t *src, size_t n,
|
|
|
|
int volume) noexcept
|
|
|
|
{
|
2019-07-05 21:05:44 +02:00
|
|
|
transform_n(src, n, dest,
|
|
|
|
[volume](auto x){
|
|
|
|
return PcmVolumeConvert<SampleFormat::S16,
|
|
|
|
SampleFormat::S24_P32>(x,
|
|
|
|
volume);
|
|
|
|
});
|
2019-07-05 21:01:01 +02:00
|
|
|
}
|
|
|
|
|
2013-12-23 10:07:28 +01:00
|
|
|
static void
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change_24(PcmDither &dither,
|
2014-01-07 00:42:02 +01:00
|
|
|
int32_t *dest, const int32_t *src, size_t n,
|
2018-01-01 19:07:33 +01:00
|
|
|
int volume) noexcept
|
2013-12-23 10:07:28 +01:00
|
|
|
{
|
2014-01-07 00:42:02 +01:00
|
|
|
pcm_volume_change<SampleFormat::S24_P32>(dither, dest, src, n,
|
2013-12-22 17:39:26 +01:00
|
|
|
volume);
|
2009-01-07 18:05:38 +01:00
|
|
|
}
|
|
|
|
|
2009-11-19 21:00:50 +01:00
|
|
|
static void
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change_32(PcmDither &dither,
|
2014-01-07 00:42:02 +01:00
|
|
|
int32_t *dest, const int32_t *src, size_t n,
|
2018-01-01 19:07:33 +01:00
|
|
|
int volume) noexcept
|
2009-11-19 21:00:50 +01:00
|
|
|
{
|
2014-01-07 00:42:02 +01:00
|
|
|
pcm_volume_change<SampleFormat::S32>(dither, dest, src, n, volume);
|
2009-11-19 21:00:50 +01:00
|
|
|
}
|
|
|
|
|
2011-10-20 02:33:51 +02:00
|
|
|
static void
|
2014-01-07 00:42:02 +01:00
|
|
|
pcm_volume_change_float(float *dest, const float *src, size_t n,
|
2018-01-01 19:07:33 +01:00
|
|
|
float volume) noexcept
|
2011-10-20 02:33:51 +02:00
|
|
|
{
|
2019-07-05 21:05:44 +02:00
|
|
|
transform_n(src, n, dest,
|
|
|
|
[volume](float x){ return x * volume; });
|
2011-10-20 02:33:51 +02:00
|
|
|
}
|
|
|
|
|
2019-07-05 19:03:00 +02:00
|
|
|
SampleFormat
|
2019-07-05 21:01:01 +02:00
|
|
|
PcmVolume::Open(SampleFormat _format, bool allow_convert)
|
2009-01-07 18:05:38 +01:00
|
|
|
{
|
2013-12-22 23:26:52 +01:00
|
|
|
assert(format == SampleFormat::UNDEFINED);
|
2009-01-07 18:05:38 +01:00
|
|
|
|
2019-07-05 21:01:01 +02:00
|
|
|
convert = false;
|
|
|
|
|
2013-12-22 23:26:52 +01:00
|
|
|
switch (_format) {
|
|
|
|
case SampleFormat::UNDEFINED:
|
2016-09-05 12:19:20 +02:00
|
|
|
throw FormatRuntimeError("Software volume for %s is not implemented",
|
|
|
|
sample_format_to_string(_format));
|
2013-12-22 23:26:52 +01:00
|
|
|
|
|
|
|
case SampleFormat::S8:
|
2019-07-05 21:01:01 +02:00
|
|
|
break;
|
|
|
|
|
2013-12-22 23:26:52 +01:00
|
|
|
case SampleFormat::S16:
|
2019-07-05 21:01:01 +02:00
|
|
|
if (allow_convert) {
|
|
|
|
/* convert S16 to S24 to avoid discarding too
|
|
|
|
many bits of precision in this stage */
|
|
|
|
format = _format;
|
|
|
|
convert = true;
|
|
|
|
return SampleFormat::S24_P32;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2013-12-22 23:26:52 +01:00
|
|
|
case SampleFormat::S24_P32:
|
|
|
|
case SampleFormat::S32:
|
|
|
|
case SampleFormat::FLOAT:
|
|
|
|
break;
|
2014-01-17 23:57:30 +01:00
|
|
|
|
|
|
|
case SampleFormat::DSD:
|
|
|
|
// TODO: implement this; currently, it's a no-op
|
|
|
|
break;
|
2009-01-07 18:05:38 +01:00
|
|
|
}
|
|
|
|
|
2019-07-05 19:03:00 +02:00
|
|
|
return format = _format;
|
2013-12-22 23:26:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ConstBuffer<void>
|
2017-05-08 14:44:49 +02:00
|
|
|
PcmVolume::Apply(ConstBuffer<void> src) noexcept
|
2013-12-22 23:26:52 +01:00
|
|
|
{
|
2019-07-05 21:01:01 +02:00
|
|
|
if (volume == PCM_VOLUME_1 && !convert)
|
2013-12-22 23:26:52 +01:00
|
|
|
return src;
|
|
|
|
|
2019-07-05 21:01:09 +02:00
|
|
|
size_t dest_size = src.size;
|
2019-07-05 21:01:01 +02:00
|
|
|
if (convert) {
|
|
|
|
assert(format == SampleFormat::S16);
|
|
|
|
|
|
|
|
/* converting to S24_P32 */
|
|
|
|
dest_size *= 2;
|
|
|
|
}
|
|
|
|
|
2019-07-05 21:01:09 +02:00
|
|
|
void *data = buffer.Get(dest_size);
|
2013-12-22 23:26:52 +01:00
|
|
|
|
|
|
|
if (volume == 0) {
|
|
|
|
/* optimized special case: 0% volume = memset(0) */
|
2019-07-05 21:01:09 +02:00
|
|
|
PcmSilence({data, dest_size}, format);
|
|
|
|
return { data, dest_size };
|
2013-12-22 23:26:52 +01:00
|
|
|
}
|
|
|
|
|
2011-10-10 08:11:04 +02:00
|
|
|
switch (format) {
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::UNDEFINED:
|
2013-12-22 23:26:52 +01:00
|
|
|
assert(false);
|
|
|
|
gcc_unreachable();
|
2011-10-20 02:21:12 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::S8:
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change_8(dither, (int8_t *)data,
|
2013-12-22 23:26:52 +01:00
|
|
|
(const int8_t *)src.data,
|
2014-01-07 00:42:02 +01:00
|
|
|
src.size / sizeof(int8_t),
|
2013-01-31 20:33:26 +01:00
|
|
|
volume);
|
2013-12-22 23:26:52 +01:00
|
|
|
break;
|
2009-01-07 18:05:38 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::S16:
|
2019-07-05 21:01:01 +02:00
|
|
|
if (convert)
|
|
|
|
PcmVolumeChange16to32((int32_t *)data,
|
|
|
|
(const int16_t *)src.data,
|
|
|
|
src.size / sizeof(int16_t),
|
|
|
|
volume);
|
|
|
|
else
|
|
|
|
pcm_volume_change_16(dither, (int16_t *)data,
|
|
|
|
(const int16_t *)src.data,
|
|
|
|
src.size / sizeof(int16_t),
|
|
|
|
volume);
|
2013-12-22 23:26:52 +01:00
|
|
|
break;
|
2009-01-07 18:05:38 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::S24_P32:
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change_24(dither, (int32_t *)data,
|
2013-12-22 23:26:52 +01:00
|
|
|
(const int32_t *)src.data,
|
2014-01-07 00:42:02 +01:00
|
|
|
src.size / sizeof(int32_t),
|
2013-01-31 20:33:26 +01:00
|
|
|
volume);
|
2013-12-22 23:26:52 +01:00
|
|
|
break;
|
2009-01-07 18:05:38 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::S32:
|
2013-12-22 17:39:26 +01:00
|
|
|
pcm_volume_change_32(dither, (int32_t *)data,
|
2013-12-22 23:26:52 +01:00
|
|
|
(const int32_t *)src.data,
|
2014-01-07 00:42:02 +01:00
|
|
|
src.size / sizeof(int32_t),
|
2013-01-31 20:33:26 +01:00
|
|
|
volume);
|
2013-12-22 23:26:52 +01:00
|
|
|
break;
|
2011-10-08 10:25:06 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::FLOAT:
|
2013-12-22 23:26:52 +01:00
|
|
|
pcm_volume_change_float((float *)data,
|
|
|
|
(const float *)src.data,
|
2014-01-07 00:42:02 +01:00
|
|
|
src.size / sizeof(float),
|
2011-10-20 02:33:51 +02:00
|
|
|
pcm_volume_to_float(volume));
|
2013-12-22 23:26:52 +01:00
|
|
|
break;
|
2014-01-17 23:57:30 +01:00
|
|
|
|
|
|
|
case SampleFormat::DSD:
|
|
|
|
// TODO: implement this; currently, it's a no-op
|
|
|
|
return src;
|
2009-01-07 18:05:38 +01:00
|
|
|
}
|
2011-10-20 02:21:12 +02:00
|
|
|
|
2019-07-05 21:01:09 +02:00
|
|
|
return { data, dest_size };
|
2009-01-07 18:05:38 +01:00
|
|
|
}
|