From: Clément Stenac Date: Tue, 28 Mar 2006 21:00:15 +0000 (+0000) Subject: Audio strings, except parametric equalizer (I just don't understand anything) - Refs... X-Git-Tag: 0.9.0-test0~11735 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=de6aa43586131a626d645ce535f070f28472a8c7;p=vlc Audio strings, except parametric equalizer (I just don't understand anything) - Refs:#438 --- diff --git a/modules/audio_filter/channel_mixer/headphone.c b/modules/audio_filter/channel_mixer/headphone.c index 714bae8fe6..9a1ee62c7a 100644 --- a/modules/audio_filter/channel_mixer/headphone.c +++ b/modules/audio_filter/channel_mixer/headphone.c @@ -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 ); diff --git a/modules/audio_filter/converter/a52tofloat32.c b/modules/audio_filter/converter/a52tofloat32.c index 6f783d5284..400bbd98ec 100644 --- a/modules/audio_filter/converter/a52tofloat32.c +++ b/modules/audio_filter/converter/a52tofloat32.c @@ -8,12 +8,12 @@ * * Authors: Gildas Bazin * Christophe Massiot - * + * * 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 diff --git a/modules/audio_filter/converter/dtstofloat32.c b/modules/audio_filter/converter/dtstofloat32.c index d535591b4d..0ebbffc70c 100644 --- a/modules/audio_filter/converter/dtstofloat32.c +++ b/modules/audio_filter/converter/dtstofloat32.c @@ -7,12 +7,12 @@ * $Id$ * * Author: Gildas Bazin - * + * * 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 *, diff --git a/modules/audio_filter/equalizer.c b/modules/audio_filter/equalizer.c index d13ece47ac..2fed5cb461 100644 --- a/modules/audio_filter/equalizer.c +++ b/modules/audio_filter/equalizer.c @@ -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") ); diff --git a/modules/audio_filter/normvol.c b/modules/audio_filter/normvol.c index 9bcbd5cfa3..93d86cd0c2 100644 --- a/modules/audio_filter/normvol.c +++ b/modules/audio_filter/normvol.c @@ -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 " \