aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm/Volume.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-12-22 23:26:52 +0100
committerMax Kellermann <max@duempel.org>2013-12-23 10:58:37 +0100
commit8edde7a4b3d652d0ac6ac3770369ddababe310a3 (patch)
tree3f0f59fd22e20853eed3e0ecee65a75fcef87155 /src/pcm/Volume.cxx
parentd11a0c9f14dcabf9ddbf8e38379dc7d6d890b02b (diff)
downloadmpd-8edde7a4b3d652d0ac6ac3770369ddababe310a3.tar.gz
mpd-8edde7a4b3d652d0ac6ac3770369ddababe310a3.tar.xz
mpd-8edde7a4b3d652d0ac6ac3770369ddababe310a3.zip
pcm/Volume: convert to class
Prepare for adding state.
Diffstat (limited to 'src/pcm/Volume.cxx')
-rw-r--r--src/pcm/Volume.cxx87
1 files changed, 58 insertions, 29 deletions
diff --git a/src/pcm/Volume.cxx b/src/pcm/Volume.cxx
index 410df7695..539ef1238 100644
--- a/src/pcm/Volume.cxx
+++ b/src/pcm/Volume.cxx
@@ -19,9 +19,11 @@
#include "config.h"
#include "Volume.hxx"
+#include "Domain.hxx"
#include "PcmUtils.hxx"
#include "Traits.hxx"
-#include "AudioFormat.hxx"
+#include "util/ConstBuffer.hxx"
+#include "util/Error.hxx"
#include <stdint.h>
#include <string.h>
@@ -143,61 +145,88 @@ pcm_volume_change_float(float *dest, const float *src, const float *end,
}
bool
-pcm_volume(void *buffer, size_t length,
- SampleFormat format,
- int volume)
+PcmVolume::Open(SampleFormat _format, Error &error)
{
- if (volume == PCM_VOLUME_1S)
- return true;
+ assert(format == SampleFormat::UNDEFINED);
- if (volume <= 0) {
- memset(buffer, 0, length);
- return true;
+ switch (_format) {
+ case SampleFormat::UNDEFINED:
+ case SampleFormat::DSD:
+ error.Format(pcm_domain,
+ "Software volume for %s is not implemented",
+ sample_format_to_string(_format));
+ return false;
+
+ case SampleFormat::S8:
+ case SampleFormat::S16:
+ case SampleFormat::S24_P32:
+ case SampleFormat::S32:
+ case SampleFormat::FLOAT:
+ break;
}
- const void *end = pcm_end_pointer(buffer, length);
+ format = _format;
+ return true;
+}
+
+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) */
+ /* TODO: is this valid for all sample formats? What
+ about floating point? */
+ memset(data, 0, src.size);
+ return { data, src.size };
+ }
+
+ const void *end = pcm_end_pointer(src.data, src.size);
switch (format) {
case SampleFormat::UNDEFINED:
case SampleFormat::DSD:
- /* not implemented */
- return false;
+ assert(false);
+ gcc_unreachable();
case SampleFormat::S8:
- pcm_volume_change_8((int8_t *)buffer,
- (const int8_t *)buffer,
+ pcm_volume_change_8((int8_t *)data,
+ (const int8_t *)src.data,
(const int8_t *)end,
volume);
- return true;
+ break;
case SampleFormat::S16:
- pcm_volume_change_16((int16_t *)buffer,
- (const int16_t *)buffer,
+ pcm_volume_change_16((int16_t *)data,
+ (const int16_t *)src.data,
(const int16_t *)end,
volume);
- return true;
+ break;
case SampleFormat::S24_P32:
- pcm_volume_change_24((int32_t *)buffer,
- (const int32_t *)buffer,
+ pcm_volume_change_24((int32_t *)data,
+ (const int32_t *)src.data,
(const int32_t *)end,
volume);
- return true;
+ break;
case SampleFormat::S32:
- pcm_volume_change_32((int32_t *)buffer,
- (const int32_t *)buffer,
+ pcm_volume_change_32((int32_t *)data,
+ (const int32_t *)src.data,
(const int32_t *)end,
volume);
- return true;
+ break;
case SampleFormat::FLOAT:
- pcm_volume_change_float((float *)buffer,
- (const float *)buffer,
+ pcm_volume_change_float((float *)data,
+ (const float *)src.data,
(const float *)end,
pcm_volume_to_float(volume));
- return true;
+ break;
}
- assert(false);
- gcc_unreachable();
+ return { data, src.size };
}