]> git.sesse.net Git - vlc/commitdiff
Audio strings, except parametric equalizer (I just don't understand anything) - Refs...
authorClément Stenac <zorglub@videolan.org>
Tue, 28 Mar 2006 21:00:15 +0000 (21:00 +0000)
committerClément Stenac <zorglub@videolan.org>
Tue, 28 Mar 2006 21:00:15 +0000 (21:00 +0000)
modules/audio_filter/channel_mixer/headphone.c
modules/audio_filter/converter/a52tofloat32.c
modules/audio_filter/converter/dtstofloat32.c
modules/audio_filter/equalizer.c
modules/audio_filter/normvol.c

index 714bae8fe638805d0b326b34bff1d0d3b9fd5024..9a1ee62c7aa419b308bf11b6ff1cf805b6d341e9 100644 (file)
@@ -65,12 +65,11 @@ static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
 
 #define HEADPHONE_DOLBY_TEXT N_("No decoding of Dolby Surround")
 #define HEADPHONE_DOLBY_LONGTEXT N_( \
-     "If this option is turned on (not recommended), Dolby Surround "\
-     "encoded streams won't be decoded before being processed by this "\
-     "filter.")
+     "Dolby Surround encoded streams won't be decoded before being " \
+     "processed by this filter. Enabling this setting is not recommended.")
 
 vlc_module_begin();
-    set_description( N_("Headphone channel mixer with virtual spatialization effect") );
+    set_description( N_("Headphone virtual spatialization effect") );
     set_shortname( _("Headphone effect") );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AFILTER );
index 6f783d5284b2b921cc445f68c7cf14cce928cee8..400bbd98ec5a3bba1cf0c7124692bec2b2a01527 100644 (file)
@@ -8,12 +8,12 @@
  *
  * Authors: Gildas Bazin <gbazin@videolan.org>
  *          Christophe Massiot <massiot@via.ecp.fr>
- *      
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
index d535591b4dc2a162621a198ed125f3ddfa3b562f..0ebbffc70cafa3c808af09b9493efa0fafbec2ea 100644 (file)
@@ -7,12 +7,12 @@
  * $Id$
  *
  * Author: Gildas Bazin <gbazin@videolan.org>
- *      
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -42,7 +42,7 @@
  *****************************************************************************/
 static int  Create    ( vlc_object_t * );
 static void Destroy   ( vlc_object_t * );
-static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,  
+static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
                         aout_buffer_t * );
 
 static int  Open      ( vlc_object_t *, filter_sys_t *,
index d13ece47ac49c594b652e7231b3c2b135c3a57b5..2fed5cb461d6b4008eb384146aa79fa755982780 100644 (file)
@@ -50,16 +50,20 @@ static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
 
 #define PRESET_TEXT N_( "Equalizer preset" )
-#define PRESET_LONGTEXT PRESET_TEXT
+#define PRESET_LONGTEXT N_("Preset to use for the equalizer." )
 
 #define BANDS_TEXT N_( "Bands gain")
-#define BANDS_LONGTEXT N_( "Override preset bands gain in dB (-20 ... 20)" )
+#define BANDS_LONGTEXT N_( \
+         "Don't use presets, manually specify bands. You need to provide " \
+         "10 values between -20dB and 20dB, separated by spaces, like " \
+         "\"0 2 4 2 0 -2 -4 -2 0\"" )
 
 #define TWOPASS_TEXT N_( "Two pass" )
-#define TWOPASS_LONGTEXT N_( "Filter twice the audio" )
+#define TWOPASS_LONGTEXT N_( "Filter twice the audio. This provides a more"  \
+         "intense effect.")
 
 #define PREAMP_TEXT N_("Global gain" )
-#define PREAMP_LONGTEXT N_("Set the global gain in dB (-20 ... 20)" )
+#define PREAMP_LONGTEXT N_("Set the global gain in dB (-20 ... 20)." )
 
 vlc_module_begin();
     set_description( _("Equalizer 10 bands") );
index 9bcbd5cfa3db2e986377ea2ba0f9e58e56ab8820..93d86cd0c2e5e085c51d4e97ac0fac1f09814acb 100644 (file)
@@ -69,8 +69,8 @@ typedef struct aout_filter_sys_t
 #define BUFF_TEXT N_("Number of audio buffers" )
 #define BUFF_LONGTEXT N_("This is the number of audio buffers on which the " \
                 "power measurement is made. A higher number of buffers will " \
-                "increase the response time of the filter to a high " \
-                "power but will make it less sensitive to short variations." )
+                "increase the response time of the filter to a spike " \
+                "but will make it less sensitive to short variations." )
 
 #define LEVEL_TEXT N_("Max level" )
 #define LEVEL_LONGTEXT N_("If the average power over the last N buffers " \