aboutsummaryrefslogtreecommitdiff
path: root/src/replay_gain_info.h
diff options
context:
space:
mode:
authorDaniel Seuthe <daniel+mpd@seuthe.org>2010-04-25 13:42:23 +0200
committerMax Kellermann <max@duempel.org>2010-04-25 13:51:58 +0200
commit92e66e5ab2c6fa56c4a36da4f959f7321749ab8c (patch)
tree3ed0903b674b9bc9d4954a0a8b1a5c35cc773e4d /src/replay_gain_info.h
parent54dedef9cf0e85901ac7edaab30e015010603352 (diff)
replay_gain: added mode "auto"
Diffstat (limited to 'src/replay_gain_info.h')
-rw-r--r--src/replay_gain_info.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/replay_gain_info.h b/src/replay_gain_info.h
index f39974d5..49f375b0 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,
};