Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
7678ad45
Commit
7678ad45
authored
Jan 12, 2008
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add audio bass, treble and loudness options (supported by PVR 250).
parent
f9d6ca04
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
modules/access/v4l2.c
modules/access/v4l2.c
+19
-3
No files found.
modules/access/v4l2.c
View file @
7678ad45
...
...
@@ -185,13 +185,23 @@ static void AccessClose( vlc_object_t * );
#endif
#define AUDIO_VOLUME_TEXT N_( "Volume" )
#define AUDIO_VOLUME_LONGTEXT N_( \
"Volume of the audio input (if supported by v4l2 driver)." )
"Volume of the audio input (if supported by
the
v4l2 driver)." )
#define AUDIO_BALANCE_TEXT N_( "Balance" )
#define AUDIO_BALANCE_LONGTEXT N_( \
"Balance of the audio input (if supported by v4l2 driver)." )
"Balance of the audio input (if supported by
the
v4l2 driver)." )
#define AUDIO_MUTE_TEXT N_( "Mute" )
#define AUDIO_MUTE_LONGTEXT N_( \
"Mute audio input (if supported by v4l2 driver)." )
"Mute audio input (if supported by the v4l2 driver)." )
#define AUDIO_BASS_TEXT N_( "Bass" )
#define AUDIO_BASS_LONGTEXT N_( \
"Bass level of the audio input (if supported by the v4l2 driver)." )
#define AUDIO_TREBLE_TEXT N_( "Treble" )
#define AUDIO_TREBLE_LONGTEXT N_( \
"Treble level of the audio input (if supported by the v4l2 driver)." )
#define AUDIO_LOUDNESS_TEXT N_( "Loudness" )
#define AUDIO_LOUDNESS_LONGTEXT N_( \
"Loudness of the audio input (if supported by the v4l2 driver)." )
#define STEREO_TEXT N_( "Stereo" )
#define STEREO_LONGTEXT N_( \
"Capture the audio stream in stereo." )
...
...
@@ -317,6 +327,12 @@ vlc_module_begin();
AUDIO_BALANCE_LONGTEXT
,
VLC_TRUE
);
add_bool
(
CFG_PREFIX
"audio-mute"
,
VLC_FALSE
,
NULL
,
AUDIO_MUTE_TEXT
,
AUDIO_MUTE_LONGTEXT
,
VLC_TRUE
);
add_integer
(
CFG_PREFIX
"audio-bass"
,
-
1
,
NULL
,
AUDIO_BASS_TEXT
,
AUDIO_BASS_LONGTEXT
,
VLC_TRUE
);
add_integer
(
CFG_PREFIX
"audio-treble"
,
-
1
,
NULL
,
AUDIO_TREBLE_TEXT
,
AUDIO_TREBLE_LONGTEXT
,
VLC_TRUE
);
add_integer
(
CFG_PREFIX
"audio-loudness"
,
-
1
,
NULL
,
AUDIO_LOUDNESS_TEXT
,
AUDIO_LOUDNESS_LONGTEXT
,
VLC_TRUE
);
add_string
(
CFG_PREFIX
"set-ctrls"
,
NULL
,
NULL
,
S_CTRLS_TEXT
,
S_CTRLS_LONGTEXT
,
VLC_TRUE
);
...
...
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