2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-11-10 17:57:14 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
#include "AudioFormat.hxx"
|
2017-01-17 22:04:31 +01:00
|
|
|
#include "util/StringBuffer.hxx"
|
2009-11-10 17:57:14 +01:00
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
|
|
|
|
2019-07-05 09:59:00 +02:00
|
|
|
#include <stdio.h>
|
2009-11-10 17:57:14 +01:00
|
|
|
|
2011-10-10 09:06:28 +02:00
|
|
|
void
|
2017-05-08 14:44:49 +02:00
|
|
|
AudioFormat::ApplyMask(AudioFormat mask) noexcept
|
2011-10-10 09:06:28 +02:00
|
|
|
{
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(IsValid());
|
|
|
|
assert(mask.IsMaskValid());
|
2011-10-10 09:06:28 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
if (mask.sample_rate != 0)
|
|
|
|
sample_rate = mask.sample_rate;
|
2011-10-10 09:06:28 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
if (mask.format != SampleFormat::UNDEFINED)
|
|
|
|
format = mask.format;
|
2011-10-10 09:06:28 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
if (mask.channels != 0)
|
|
|
|
channels = mask.channels;
|
2011-10-10 09:06:28 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(IsValid());
|
2011-10-10 09:06:28 +02:00
|
|
|
}
|
|
|
|
|
2017-01-17 22:04:31 +01:00
|
|
|
StringBuffer<24>
|
2017-05-08 14:44:49 +02:00
|
|
|
ToString(const AudioFormat af) noexcept
|
2009-11-10 17:57:14 +01:00
|
|
|
{
|
2018-08-02 21:17:54 +02:00
|
|
|
StringBuffer<24> buffer;
|
|
|
|
char *p = buffer.data();
|
|
|
|
|
2017-01-17 09:25:18 +01:00
|
|
|
if (af.format == SampleFormat::DSD && af.sample_rate > 0 &&
|
|
|
|
af.sample_rate % 44100 == 0) {
|
|
|
|
/* use shortcuts such as "dsd64" which implies the
|
|
|
|
sample rate */
|
2018-08-02 21:17:54 +02:00
|
|
|
p += sprintf(p, "dsd%u:", af.sample_rate * 8 / 44100);
|
|
|
|
} else {
|
2018-08-02 21:18:36 +02:00
|
|
|
const char *sample_format = af.format != SampleFormat::UNDEFINED
|
|
|
|
? sample_format_to_string(af.format)
|
|
|
|
: "*";
|
|
|
|
|
|
|
|
if (af.sample_rate > 0)
|
|
|
|
p += sprintf(p, "%u:%s:", af.sample_rate,
|
|
|
|
sample_format);
|
|
|
|
else
|
|
|
|
p += sprintf(p, "*:%s:", sample_format);
|
2017-01-17 09:25:18 +01:00
|
|
|
}
|
|
|
|
|
2018-08-02 21:18:36 +02:00
|
|
|
if (af.channels > 0)
|
|
|
|
p += sprintf(p, "%u", af.channels);
|
|
|
|
else {
|
|
|
|
*p++ = '*';
|
|
|
|
*p = 0;
|
|
|
|
}
|
2018-08-02 21:17:54 +02:00
|
|
|
|
|
|
|
return buffer;
|
2009-11-10 17:57:14 +01:00
|
|
|
}
|