diff options
author | Daniel Seuthe <daniel+mpd@seuthe.org> | 2010-04-25 13:42:23 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-04-25 13:51:58 +0200 |
commit | 92e66e5ab2c6fa56c4a36da4f959f7321749ab8c (patch) | |
tree | 3ed0903b674b9bc9d4954a0a8b1a5c35cc773e4d /src/replay_gain_info.h | |
parent | 54dedef9cf0e85901ac7edaab30e015010603352 (diff) | |
download | mpd-92e66e5ab2c6fa56c4a36da4f959f7321749ab8c.tar.gz mpd-92e66e5ab2c6fa56c4a36da4f959f7321749ab8c.tar.xz mpd-92e66e5ab2c6fa56c4a36da4f959f7321749ab8c.zip |
replay_gain: added mode "auto"
Diffstat (limited to '')
-rw-r--r-- | src/replay_gain_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/replay_gain_info.h b/src/replay_gain_info.h index f39974d59..49f375b04 100644 --- a/src/replay_gain_info.h +++ b/src/replay_gain_info.h @@ -26,7 +26,8 @@ #include <math.h> enum replay_gain_mode { - REPLAY_GAIN_OFF = -1, + REPLAY_GAIN_AUTO = -2, + REPLAY_GAIN_OFF, REPLAY_GAIN_ALBUM, REPLAY_GAIN_TRACK, }; |