Volume.cxx 4.53 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20
#include "config.h"
21
#include "Volume.hxx"
22
#include "Silence.hxx"
23
#include "Traits.hxx"
24
#include "util/ConstBuffer.hxx"
25
#include "util/WritableBuffer.hxx"
26
#include "util/RuntimeError.hxx"
27

28 29
#include "PcmDither.cxx" // including the .cxx file to get inlined templates

30 31 32
#include <stdint.h>
#include <string.h>

33 34
template<SampleFormat F, class Traits=SampleTraits<F>>
static inline typename Traits::value_type
35 36
pcm_volume_sample(PcmDither &dither,
		  typename Traits::value_type _sample,
37 38 39 40
		  int volume)
{
	typename Traits::long_type sample(_sample);

41 42 43
	return dither.DitherShift<typename Traits::long_type,
				  Traits::BITS + PCM_VOLUME_BITS,
				  Traits::BITS>(sample * volume);
44 45
}

46
template<SampleFormat F, class Traits=SampleTraits<F>>
47
static void
48 49
pcm_volume_change(PcmDither &dither,
		  typename Traits::pointer_type dest,
50
		  typename Traits::const_pointer_type src,
51
		  size_t n,
52
		  int volume)
53
{
54 55
	for (size_t i = 0; i != n; ++i)
		dest[i] = pcm_volume_sample<F, Traits>(dither, src[i], volume);
56 57 58
}

static void
59
pcm_volume_change_8(PcmDither &dither,
60
		    int8_t *dest, const int8_t *src, size_t n,
61
		    int volume)
62
{
63
	pcm_volume_change<SampleFormat::S8>(dither, dest, src, n, volume);
64 65 66
}

static void
67
pcm_volume_change_16(PcmDither &dither,
68
		     int16_t *dest, const int16_t *src, size_t n,
69
		     int volume)
70
{
71
	pcm_volume_change<SampleFormat::S16>(dither, dest, src, n, volume);
72 73 74
}

static void
75
pcm_volume_change_24(PcmDither &dither,
76
		     int32_t *dest, const int32_t *src, size_t n,
77
		     int volume)
78
{
79
	pcm_volume_change<SampleFormat::S24_P32>(dither, dest, src, n,
80
						 volume);
81 82
}

83
static void
84
pcm_volume_change_32(PcmDither &dither,
85
		     int32_t *dest, const int32_t *src, size_t n,
86
		     int volume)
87
{
88
	pcm_volume_change<SampleFormat::S32>(dither, dest, src, n, volume);
89 90
}

91
static void
92
pcm_volume_change_float(float *dest, const float *src, size_t n,
93
			float volume)
94
{
95 96
	for (size_t i = 0; i != n; ++i)
		dest[i] = src[i] * volume;
97 98
}

99 100
void
PcmVolume::Open(SampleFormat _format)
101
{
102
	assert(format == SampleFormat::UNDEFINED);
103

104 105
	switch (_format) {
	case SampleFormat::UNDEFINED:
106 107
		throw FormatRuntimeError("Software volume for %s is not implemented",
					 sample_format_to_string(_format));
108 109 110 111 112 113 114

	case SampleFormat::S8:
	case SampleFormat::S16:
	case SampleFormat::S24_P32:
	case SampleFormat::S32:
	case SampleFormat::FLOAT:
		break;
115 116 117 118

	case SampleFormat::DSD:
		// TODO: implement this; currently, it's a no-op
		break;
119 120
	}

121 122 123 124 125 126 127 128 129 130 131 132 133
	format = _format;
}

ConstBuffer<void>
PcmVolume::Apply(ConstBuffer<void> src)
{
	if (volume == PCM_VOLUME_1)
		return src;

	void *data = buffer.Get(src.size);

	if (volume == 0) {
		/* optimized special case: 0% volume = memset(0) */
134
		PcmSilence({data, src.size}, format);
135 136 137
		return { data, src.size };
	}

138
	switch (format) {
139
	case SampleFormat::UNDEFINED:
140 141
		assert(false);
		gcc_unreachable();
142

143
	case SampleFormat::S8:
144
		pcm_volume_change_8(dither, (int8_t *)data,
145
				    (const int8_t *)src.data,
146
				    src.size / sizeof(int8_t),
Max Kellermann's avatar
Max Kellermann committed
147
				    volume);
148
		break;
149

150
	case SampleFormat::S16:
151
		pcm_volume_change_16(dither, (int16_t *)data,
152
				     (const int16_t *)src.data,
153
				     src.size / sizeof(int16_t),
Max Kellermann's avatar
Max Kellermann committed
154
				     volume);
155
		break;
156

157
	case SampleFormat::S24_P32:
158
		pcm_volume_change_24(dither, (int32_t *)data,
159
				     (const int32_t *)src.data,
160
				     src.size / sizeof(int32_t),
Max Kellermann's avatar
Max Kellermann committed
161
				     volume);
162
		break;
163

164
	case SampleFormat::S32:
165
		pcm_volume_change_32(dither, (int32_t *)data,
166
				     (const int32_t *)src.data,
167
				     src.size / sizeof(int32_t),
Max Kellermann's avatar
Max Kellermann committed
168
				     volume);
169
		break;
170

171
	case SampleFormat::FLOAT:
172 173
		pcm_volume_change_float((float *)data,
					(const float *)src.data,
174
					src.size / sizeof(float),
175
					pcm_volume_to_float(volume));
176
		break;
177 178 179 180

	case SampleFormat::DSD:
		// TODO: implement this; currently, it's a no-op
		return src;
181
	}
182

183
	return { data, src.size };
184
}