aboutsummaryrefslogtreecommitdiffstats
path: root/src/replay_gain.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-10-17 22:58:19 +0200
committerMax Kellermann <max@duempel.org>2009-10-17 22:58:19 +0200
commitbddb6b42738c8637000896d867e89691d3a57c3e (patch)
treef3eb6ee1c580a1264d33507ab7684402d2a19a55 /src/replay_gain.c
parent7ec32704f9b0cd22f7bde1654a5e80bb28ee9e22 (diff)
downloadmpd-bddb6b42738c8637000896d867e89691d3a57c3e.tar.gz
mpd-bddb6b42738c8637000896d867e89691d3a57c3e.tar.xz
mpd-bddb6b42738c8637000896d867e89691d3a57c3e.zip
command: allow changing replay gain mode on-the-fly
The new command "replay_gain_mode" allows the user to switch the replay gain mode on-the-fly. No more mpd.conf editing.
Diffstat (limited to 'src/replay_gain.c')
-rw-r--r--src/replay_gain.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/replay_gain.c b/src/replay_gain.c
index 5bfa765fe..a59cfa245 100644
--- a/src/replay_gain.c
+++ b/src/replay_gain.c
@@ -42,7 +42,26 @@ enum replay_gain_mode replay_gain_mode = REPLAY_GAIN_OFF;
static float replay_gain_preamp = 1.0;
static float replay_gain_missing_preamp = 1.0;
-static bool
+const char *
+replay_gain_get_mode_string(void)
+{
+ switch (replay_gain_mode) {
+ case REPLAY_GAIN_OFF:
+ return "off";
+
+ case REPLAY_GAIN_TRACK:
+ return "track";
+
+ case REPLAY_GAIN_ALBUM:
+ return "album";
+ }
+
+ /* unreachable */
+ assert(false);
+ return "off";
+}
+
+bool
replay_gain_set_mode_string(const char *p)
{
assert(p != NULL);