You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
909 B
C++

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#include "ReplayGainMode.hxx"
#include <cassert>
#include <stdexcept>
#include <utility> // for std::unreachable()
#include <string.h>
const char *
ToString(ReplayGainMode mode) noexcept
{
switch (mode) {
case ReplayGainMode::AUTO:
return "auto";
case ReplayGainMode::OFF:
return "off";
case ReplayGainMode::TRACK:
return "track";
case ReplayGainMode::ALBUM:
return "album";
}
std::unreachable();
}
ReplayGainMode
FromString(const char *s)
{
assert(s != nullptr);
if (strcmp(s, "off") == 0)
return ReplayGainMode::OFF;
else if (strcmp(s, "track") == 0)
return ReplayGainMode::TRACK;
else if (strcmp(s, "album") == 0)
return ReplayGainMode::ALBUM;
else if (strcmp(s, "auto") == 0)
return ReplayGainMode::AUTO;
else
throw std::invalid_argument("Unrecognized replay gain mode");
}