2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2010-01-04 20:43:19 +01:00
|
|
|
|
2013-10-02 12:22:12 +02:00
|
|
|
#ifndef MPD_REPLAY_GAIN_INFO_HXX
|
|
|
|
#define MPD_REPLAY_GAIN_INFO_HXX
|
2010-01-04 20:43:19 +01:00
|
|
|
|
2016-11-24 16:40:47 +01:00
|
|
|
#include "ReplayGainMode.hxx"
|
2010-01-04 20:43:19 +01:00
|
|
|
|
2016-11-25 11:13:08 +01:00
|
|
|
struct ReplayGainConfig;
|
|
|
|
|
2013-10-25 19:09:22 +02:00
|
|
|
struct ReplayGainTuple {
|
2010-01-04 20:43:19 +01:00
|
|
|
float gain;
|
|
|
|
float peak;
|
|
|
|
|
2013-10-25 19:05:49 +02:00
|
|
|
void Clear() {
|
2013-10-30 18:01:45 +01:00
|
|
|
gain = -200;
|
2013-10-25 19:05:49 +02:00
|
|
|
peak = 0.0;
|
|
|
|
}
|
2010-01-04 20:43:19 +01:00
|
|
|
|
2014-12-10 07:57:07 +01:00
|
|
|
constexpr bool IsDefined() const {
|
2013-10-30 18:01:45 +01:00
|
|
|
return gain > -100;
|
2013-10-25 19:05:49 +02:00
|
|
|
}
|
2010-01-04 20:43:19 +01:00
|
|
|
|
2019-09-13 19:46:39 +02:00
|
|
|
static constexpr ReplayGainTuple Undefined() noexcept {
|
|
|
|
return {-200.0f, 0.0f};
|
|
|
|
}
|
|
|
|
|
2021-10-13 11:28:04 +02:00
|
|
|
[[gnu::pure]]
|
2017-05-08 14:44:49 +02:00
|
|
|
float CalculateScale(const ReplayGainConfig &config) const noexcept;
|
2013-10-25 19:05:49 +02:00
|
|
|
};
|
2010-01-04 20:43:19 +01:00
|
|
|
|
2013-10-25 19:05:49 +02:00
|
|
|
struct ReplayGainInfo {
|
2016-11-24 16:45:56 +01:00
|
|
|
ReplayGainTuple track, album;
|
2010-02-15 14:36:05 +01:00
|
|
|
|
2017-05-08 14:44:49 +02:00
|
|
|
constexpr bool IsDefined() const noexcept {
|
2016-11-24 16:45:56 +01:00
|
|
|
return track.IsDefined() || album.IsDefined();
|
2014-12-10 07:57:46 +01:00
|
|
|
}
|
|
|
|
|
2019-09-13 19:46:39 +02:00
|
|
|
static constexpr ReplayGainInfo Undefined() noexcept {
|
|
|
|
return {
|
|
|
|
ReplayGainTuple::Undefined(),
|
|
|
|
ReplayGainTuple::Undefined(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-05-08 14:44:49 +02:00
|
|
|
const ReplayGainTuple &Get(ReplayGainMode mode) const noexcept {
|
2016-11-24 17:21:23 +01:00
|
|
|
return mode == ReplayGainMode::ALBUM
|
2016-11-24 16:45:56 +01:00
|
|
|
? (album.IsDefined() ? album : track)
|
|
|
|
: (track.IsDefined() ? track : album);
|
2016-11-24 16:50:55 +01:00
|
|
|
}
|
|
|
|
|
2017-05-08 14:44:49 +02:00
|
|
|
void Clear() noexcept {
|
2016-11-24 16:45:56 +01:00
|
|
|
track.Clear();
|
|
|
|
album.Clear();
|
2013-10-25 19:05:49 +02:00
|
|
|
}
|
|
|
|
};
|
2010-02-17 08:13:34 +01:00
|
|
|
|
2010-01-04 20:43:19 +01:00
|
|
|
#endif
|