equalizer_presets.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * equalizer_presets.h:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 1e52d94cb9da6d5122e38f7975c174422e1165d9 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Equalizer presets
  25.  *****************************************************************************/
  26. /* Equalizer presets values are in this file instead of equalizer.c, so you can
  27.  * get these values even if the equalizer is not enabled.
  28.  */
  29. #define EQZ_BANDS_MAX 10
  30. #define NB_PRESETS 18
  31. static const char *const preset_list[] = {
  32.     "flat", "classical", "club", "dance", "fullbass", "fullbasstreble",
  33.     "fulltreble", "headphones","largehall", "live", "party", "pop", "reggae",
  34.     "rock", "ska", "soft", "softrock", "techno"
  35. };
  36. static const char *const preset_list_text[] = {
  37.     N_("Flat"), N_("Classical"), N_("Club"), N_("Dance"), N_("Full bass"),
  38.     N_("Full bass and treble"), N_("Full treble"), N_("Headphones"),
  39.     N_("Large Hall"), N_("Live"), N_("Party"), N_("Pop"), N_("Reggae"),
  40.     N_("Rock"), N_("Ska"), N_("Soft"), N_("Soft rock"), N_("Techno"),
  41. };
  42. typedef struct
  43. {
  44.     const char *psz_name;
  45.     int  i_band;
  46.     float f_preamp;
  47.     float f_amp[EQZ_BANDS_MAX];
  48. } eqz_preset_t;
  49. static const eqz_preset_t eqz_preset_flat_10b=
  50. {
  51.     "flat", 10, 12.0,
  52.     { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 },
  53. };
  54. static const eqz_preset_t eqz_preset_classical_10b=
  55. {
  56.     "classical", 10, 12.0,
  57.     { -1.11022e-15, -1.11022e-15, -1.11022e-15, -1.11022e-15, -1.11022e-15, -1.11022e-15, -7.2, -7.2, -7.2, -9.6 }
  58. };
  59. static const eqz_preset_t eqz_preset_club_10b=
  60. {
  61.     "club", 10, 6.0,
  62.     { -1.11022e-15, -1.11022e-15, 8, 5.6, 5.6, 5.6, 3.2, -1.11022e-15, -1.11022e-15, -1.11022e-15 }
  63. };
  64. static const eqz_preset_t eqz_preset_dance_10b=
  65. {
  66.     "dance", 10, 5.0,
  67.     { 9.6, 7.2, 2.4, -1.11022e-15, -1.11022e-15, -5.6, -7.2, -7.2, -1.11022e-15, -1.11022e-15 }
  68. };
  69. static const eqz_preset_t eqz_preset_fullbass_10b=
  70. {
  71.     "fullbass", 10, 5.0,
  72.     { -8, 9.6, 9.6, 5.6, 1.6, -4, -8, -10.4, -11.2, -11.2  }
  73. };
  74. static const eqz_preset_t eqz_preset_fullbasstreble_10b=
  75. {
  76.     "fullbasstreble", 10, 4.0,
  77.     { 7.2, 5.6, -1.11022e-15, -7.2, -4.8, 1.6, 8, 11.2, 12, 12 }
  78. };
  79. static const eqz_preset_t eqz_preset_fulltreble_10b=
  80. {
  81.     "fulltreble", 10, 3.0,
  82.     { -9.6, -9.6, -9.6, -4, 2.4, 11.2, 16, 16, 16, 16.8 }
  83. };
  84. static const eqz_preset_t eqz_preset_headphones_10b=
  85. {
  86.     "headphones", 10, 4.0,
  87.     { 4.8, 11.2, 5.6, -3.2, -2.4, 1.6, 4.8, 9.6, 12.8, 14.4 }
  88. };
  89. static const eqz_preset_t eqz_preset_largehall_10b=
  90. {
  91.     "largehall", 10, 5.0,
  92.     { 10.4, 10.4, 5.6, 5.6, -1.11022e-15, -4.8, -4.8, -4.8, -1.11022e-15, -1.11022e-15 }
  93. };
  94. static const eqz_preset_t eqz_preset_live_10b=
  95. {
  96.     "live", 10, 7.0,
  97.     { -4.8, -1.11022e-15, 4, 5.6, 5.6, 5.6, 4, 2.4, 2.4, 2.4 }
  98. };
  99. static const eqz_preset_t eqz_preset_party_10b=
  100. {
  101.     "party", 10, 6.0,
  102.     { 7.2, 7.2, -1.11022e-15, -1.11022e-15, -1.11022e-15, -1.11022e-15, -1.11022e-15, -1.11022e-15, 7.2, 7.2 }
  103. };
  104. static const eqz_preset_t eqz_preset_pop_10b=
  105. {
  106.     "pop", 10, 6.0,
  107.     { -1.6, 4.8, 7.2, 8, 5.6, -1.11022e-15, -2.4, -2.4, -1.6, -1.6 }
  108. };
  109. static const eqz_preset_t eqz_preset_reggae_10b=
  110. {
  111.     "reggae", 10, 8.0,
  112.     { -1.11022e-15, -1.11022e-15, -1.11022e-15, -5.6, -1.11022e-15, 6.4, 6.4, -1.11022e-15, -1.11022e-15, -1.11022e-15 }
  113. };
  114. static const eqz_preset_t eqz_preset_rock_10b=
  115. {
  116.     "rock", 10, 5.0,
  117.     { 8, 4.8, -5.6, -8, -3.2, 4, 8.8, 11.2, 11.2, 11.2 }
  118. };
  119. static const eqz_preset_t eqz_preset_ska_10b=
  120. {
  121.     "ska", 10, 6.0,
  122.     { -2.4, -4.8, -4, -1.11022e-15, 4, 5.6, 8.8, 9.6, 11.2, 9.6 }
  123. };
  124. static const eqz_preset_t eqz_preset_soft_10b=
  125. {
  126.     "soft", 10, 5.0,
  127.     { 4.8, 1.6, -1.11022e-15, -2.4, -1.11022e-15, 4, 8, 9.6, 11.2, 12 }
  128. };
  129. static const eqz_preset_t eqz_preset_softrock_10b=
  130. {
  131.     "softrock", 10, 7.0,
  132.     { 4, 4, 2.4, -1.11022e-15, -4, -5.6, -3.2, -1.11022e-15, 2.4, 8.8 }
  133. };
  134. static const eqz_preset_t eqz_preset_techno_10b=
  135. {
  136.     "techno", 10, 5.0,
  137.     { 8, 5.6, -1.11022e-15, -5.6, -4.8, -1.11022e-15, 8, 9.6, 9.6, 8.8 }
  138. };
  139. static const eqz_preset_t *eqz_preset_10b[] =
  140. {
  141.     &eqz_preset_flat_10b,
  142.     &eqz_preset_classical_10b,
  143.     &eqz_preset_club_10b,
  144.     &eqz_preset_dance_10b,
  145.     &eqz_preset_fullbass_10b,
  146.     &eqz_preset_fullbasstreble_10b,
  147.     &eqz_preset_fulltreble_10b,
  148.     &eqz_preset_headphones_10b,
  149.     &eqz_preset_largehall_10b,
  150.     &eqz_preset_live_10b,
  151.     &eqz_preset_party_10b,
  152.     &eqz_preset_pop_10b,
  153.     &eqz_preset_reggae_10b,
  154.     &eqz_preset_rock_10b,
  155.     &eqz_preset_ska_10b,
  156.     &eqz_preset_soft_10b,
  157.     &eqz_preset_softrock_10b,
  158.     &eqz_preset_techno_10b,
  159.     NULL
  160. };