Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
de6aa435
Commit
de6aa435
authored
Mar 28, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Audio strings, except parametric equalizer (I just don't understand anything) - Refs:#438
parent
470b47fe
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
15 deletions
+18
-15
modules/audio_filter/channel_mixer/headphone.c
modules/audio_filter/channel_mixer/headphone.c
+3
-4
modules/audio_filter/converter/a52tofloat32.c
modules/audio_filter/converter/a52tofloat32.c
+2
-2
modules/audio_filter/converter/dtstofloat32.c
modules/audio_filter/converter/dtstofloat32.c
+3
-3
modules/audio_filter/equalizer.c
modules/audio_filter/equalizer.c
+8
-4
modules/audio_filter/normvol.c
modules/audio_filter/normvol.c
+2
-2
No files found.
modules/audio_filter/channel_mixer/headphone.c
View file @
de6aa435
...
...
@@ -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
);
...
...
modules/audio_filter/converter/a52tofloat32.c
View file @
de6aa435
...
...
@@ -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
...
...
modules/audio_filter/converter/dtstofloat32.c
View file @
de6aa435
...
...
@@ -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
*
,
...
...
modules/audio_filter/equalizer.c
View file @
de6aa435
...
...
@@ -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"
)
);
...
...
modules/audio_filter/normvol.c
View file @
de6aa435
...
...
@@ -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 " \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment