Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
b663f448
Commit
b663f448
authored
Oct 23, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
V4L2: remove exposure control, this is for still cameras
parent
37575838
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
8 deletions
+2
-8
modules/access/v4l2/controls.c
modules/access/v4l2/controls.c
+0
-1
modules/access/v4l2/video.c
modules/access/v4l2/video.c
+2
-7
No files found.
modules/access/v4l2/controls.c
View file @
b663f448
...
...
@@ -56,7 +56,6 @@ static const vlc_v4l2_ctrl_name_t controls[] =
{
"red-balance"
,
V4L2_CID_RED_BALANCE
},
{
"blue-balance"
,
V4L2_CID_BLUE_BALANCE
},
{
"gamma"
,
V4L2_CID_GAMMA
},
{
"exposure"
,
V4L2_CID_EXPOSURE
},
{
"autogain"
,
V4L2_CID_AUTOGAIN
},
{
"gain"
,
V4L2_CID_GAIN
},
{
"hflip"
,
V4L2_CID_HFLIP
},
...
...
modules/access/v4l2/video.c
View file @
b663f448
...
...
@@ -120,12 +120,9 @@
#define GAMMA_TEXT N_( "Gamma" )
#define GAMMA_LONGTEXT N_( \
"Gamma adjust." )
#define EXPOSURE_TEXT N_( "Exposure" )
#define EXPOSURE_LONGTEXT N_( \
"Exposure." )
#define AUTOGAIN_TEXT N_( "Automatic gain/exposure" )
#define AUTOGAIN_TEXT N_( "Automatic gain" )
#define AUTOGAIN_LONGTEXT N_( \
"Automatically set the video gain
or exposure
." )
"Automatically set the video gain." )
#define GAIN_TEXT N_( "Gain" )
#define GAIN_LONGTEXT N_( \
"Picture gain." )
...
...
@@ -392,8 +389,6 @@ vlc_module_begin ()
BLUEBALANCE_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"gamma"
,
-
1
,
GAMMA_TEXT
,
GAMMA_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"exposure"
,
-
1
,
EXPOSURE_TEXT
,
EXPOSURE_LONGTEXT
,
true
)
add_integer
(
CFG_PREFIX
"autogain"
,
-
1
,
AUTOGAIN_TEXT
,
AUTOGAIN_LONGTEXT
,
true
)
change_integer_list
(
tristate_vlc
,
tristate_user
)
...
...
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