summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 327b79a7ee..dafa7bcd34 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -333,8 +333,9 @@ struct user_settings
333 333
334#if CONFIG_CODEC == SWCODEC 334#if CONFIG_CODEC == SWCODEC
335 bool replaygain; /* enable replaygain */ 335 bool replaygain; /* enable replaygain */
336 bool replaygain_track; /* true for track gain, false for album gain */
337 bool replaygain_noclip; /* scale to prevent clips */ 336 bool replaygain_noclip; /* scale to prevent clips */
337 int replaygain_type; /* 0=track gain, 1=album gain, 2=track gain if
338 shuffle is on, album gain otherwise */
338 int replaygain_preamp; /* scale replaygained tracks by this */ 339 int replaygain_preamp; /* scale replaygained tracks by this */
339 int beep; /* system beep volume when changing tracks etc. */ 340 int beep; /* system beep volume when changing tracks etc. */
340#endif 341#endif
@@ -427,4 +428,7 @@ enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
427/* recursive dir insert options */ 428/* recursive dir insert options */
428enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK }; 429enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
429 430
431/* replaygain types */
432enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE };
433
430#endif /* __SETTINGS_H__ */ 434#endif /* __SETTINGS_H__ */