]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/equalizer_presets.h
Use var_Inherit* instead of var_CreateGet*.
[vlc] / modules / audio_filter / equalizer_presets.h
index 896d30f1796a768ce1c4fc302d283760ffae0bfc..1e52d94cb9da6d5122e38f7975c174422e1165d9 100644 (file)
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
 
 #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];