]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/equalizer_presets.h
band-limited resampler: kill config_Get*
[vlc] / modules / audio_filter / equalizer_presets.h
index b3d3eada3b7b866a6a85970e3cf237fdd65a0743..1e52d94cb9da6d5122e38f7975c174422e1165d9 100644 (file)
 
 #define EQZ_BANDS_MAX 10
 
-static char *preset_list[] = {
+#define NB_PRESETS 18
+static const char *const preset_list[] = {
     "flat", "classical", "club", "dance", "fullbass", "fullbasstreble",
     "fulltreble", "headphones","largehall", "live", "party", "pop", "reggae",
     "rock", "ska", "soft", "softrock", "techno"
 };
-static char *preset_list_text[] = {
+static const char *const preset_list_text[] = {
     N_("Flat"), N_("Classical"), N_("Club"), N_("Dance"), N_("Full bass"),
     N_("Full bass and treble"), N_("Full treble"), N_("Headphones"),
     N_("Large Hall"), N_("Live"), N_("Party"), N_("Pop"), N_("Reggae"),
@@ -44,7 +45,7 @@ static char *preset_list_text[] = {
 
 typedef struct
 {
-    char *psz_name;
+    const char *psz_name;
     int  i_band;
     float f_preamp;
     float f_amp[EQZ_BANDS_MAX];