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
47b90623
Commit
47b90623
authored
Oct 01, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
V4L2: make loudness, horizontal flip and vertical flip booleans
parent
7973cc97
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
modules/access/v4l2/video.c
modules/access/v4l2/video.c
+8
-10
No files found.
modules/access/v4l2/video.c
View file @
47b90623
...
...
@@ -126,9 +126,9 @@
#define EXPOSURE_TEXT N_( "Exposure" )
#define EXPOSURE_LONGTEXT N_( \
"Exposure of the video input (if supported by the v4L2 driver)." )
#define AUTOGAIN_TEXT N_( "Auto
gain
" )
#define AUTOGAIN_TEXT N_( "Auto
matic gain/exposure
" )
#define AUTOGAIN_LONGTEXT N_( \
"Automatically set the video
input's gain
(if supported by the " \
"Automatically set the video
gain/exposure
(if supported by the " \
"v4l2 driver)." )
#define GAIN_TEXT N_( "Gain" )
#define GAIN_LONGTEXT N_( \
...
...
@@ -161,9 +161,9 @@
#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_TEXT N_( "Loudness
mode
" )
#define AUDIO_LOUDNESS_LONGTEXT N_( \
"Loudness
of the audio inpu
t (if supported by the v4l2 driver)." )
"Loudness
mode a.k.a. bass boos
t (if supported by the v4l2 driver)." )
#define S_CTRLS_TEXT N_("v4l2 driver controls")
#define S_CTRLS_LONGTEXT N_( \
...
...
@@ -360,10 +360,8 @@ vlc_module_begin ()
change_integer_list
(
tristate_vlc
,
tristate_user
)
add_integer
(
CFG_PREFIX
"gain"
,
-
1
,
GAIN_TEXT
,
GAIN_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"hflip"
,
-
1
,
HFLIP_TEXT
,
HFLIP_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"vflip"
,
-
1
,
VFLIP_TEXT
,
VFLIP_LONGTEXT
,
true
)
add_bool
(
CFG_PREFIX
"hflip"
,
false
,
HFLIP_TEXT
,
HFLIP_LONGTEXT
,
true
)
add_bool
(
CFG_PREFIX
"vflip"
,
false
,
VFLIP_TEXT
,
VFLIP_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"hcenter"
,
-
1
,
HCENTER_TEXT
,
HCENTER_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"vcenter"
,
-
1
,
VCENTER_TEXT
,
...
...
@@ -378,7 +376,7 @@ vlc_module_begin ()
AUDIO_BASS_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"audio-treble"
,
-
1
,
AUDIO_TREBLE_TEXT
,
AUDIO_TREBLE_LONGTEXT
,
true
)
add_
integer
(
CFG_PREFIX
"audio-loudness"
,
-
1
,
AUDIO_LOUDNESS_TEXT
,
add_
bool
(
CFG_PREFIX
"audio-loudness"
,
false
,
AUDIO_LOUDNESS_TEXT
,
AUDIO_LOUDNESS_LONGTEXT
,
true
)
add_string
(
CFG_PREFIX
"set-ctrls"
,
NULL
,
S_CTRLS_TEXT
,
S_CTRLS_LONGTEXT
,
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