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
43782114
Commit
43782114
authored
Sep 01, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean --v4l2-set-ctrls up
parent
753cdfb2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
58 deletions
+40
-58
modules/access/v4l2.c
modules/access/v4l2.c
+40
-58
No files found.
modules/access/v4l2.c
View file @
43782114
...
@@ -430,7 +430,7 @@ vlc_module_end ()
...
@@ -430,7 +430,7 @@ vlc_module_end ()
static
void
CommonClose
(
vlc_object_t
*
,
demux_sys_t
*
);
static
void
CommonClose
(
vlc_object_t
*
,
demux_sys_t
*
);
static
char
*
ParseMRL
(
vlc_object_t
*
,
const
char
*
);
static
char
*
ParseMRL
(
vlc_object_t
*
,
const
char
*
);
static
void
GetV4L2Params
(
demux_sys_t
*
,
vlc_object_t
*
);
static
void
GetV4L2Params
(
demux_sys_t
*
,
vlc_object_t
*
);
static
void
SetAvailControlsByString
(
vlc_object_t
*
,
demux_sys_t
*
,
int
);
static
void
SetAvailControlsByString
(
vlc_object_t
*
,
int
);
static
int
DemuxControl
(
demux_t
*
,
int
,
va_list
);
static
int
DemuxControl
(
demux_t
*
,
int
,
va_list
);
static
int
AccessControl
(
access_t
*
,
int
,
va_list
);
static
int
AccessControl
(
access_t
*
,
int
,
va_list
);
...
@@ -597,9 +597,6 @@ struct demux_sys_t
...
@@ -597,9 +597,6 @@ struct demux_sys_t
int
i_frequency
;
int
i_frequency
;
int
i_tuner_audio_mode
;
int
i_tuner_audio_mode
;
/* Controls */
char
*
psz_set_ctrls
;
#ifdef HAVE_LIBV4L2
#ifdef HAVE_LIBV4L2
bool
b_libv4l2
;
bool
b_libv4l2
;
#endif
#endif
...
@@ -692,8 +689,6 @@ static void GetV4L2Params( demux_sys_t *p_sys, vlc_object_t *p_obj )
...
@@ -692,8 +689,6 @@ static void GetV4L2Params( demux_sys_t *p_sys, vlc_object_t *p_obj )
p_sys
->
i_frequency
=
var_CreateGetInteger
(
p_obj
,
"v4l2-tuner-frequency"
);
p_sys
->
i_frequency
=
var_CreateGetInteger
(
p_obj
,
"v4l2-tuner-frequency"
);
p_sys
->
i_tuner_audio_mode
=
var_CreateGetInteger
(
p_obj
,
"v4l2-tuner-audio-mode"
);
p_sys
->
i_tuner_audio_mode
=
var_CreateGetInteger
(
p_obj
,
"v4l2-tuner-audio-mode"
);
p_sys
->
psz_set_ctrls
=
var_CreateGetString
(
p_obj
,
"v4l2-set-ctrls"
);
char
*
psz_aspect
=
var_CreateGetString
(
p_obj
,
"v4l2-aspect-ratio"
);
char
*
psz_aspect
=
var_CreateGetString
(
p_obj
,
"v4l2-aspect-ratio"
);
char
*
psz_delim
=
!
EMPTY_STR
(
psz_aspect
)
?
strchr
(
psz_aspect
,
':'
)
:
NULL
;
char
*
psz_delim
=
!
EMPTY_STR
(
psz_aspect
)
?
strchr
(
psz_aspect
,
':'
)
:
NULL
;
if
(
psz_delim
)
if
(
psz_delim
)
...
@@ -824,7 +819,6 @@ static void CommonClose( vlc_object_t *p_this, demux_sys_t *p_sys )
...
@@ -824,7 +819,6 @@ static void CommonClose( vlc_object_t *p_this, demux_sys_t *p_sys )
free
(
p_sys
->
psz_standard
);
free
(
p_sys
->
psz_standard
);
free
(
p_sys
->
p_codecs
);
free
(
p_sys
->
p_codecs
);
free
(
p_sys
->
psz_requested_chroma
);
free
(
p_sys
->
psz_requested_chroma
);
free
(
p_sys
->
psz_set_ctrls
);
free
(
p_sys
);
free
(
p_sys
);
}
}
...
@@ -1642,7 +1636,7 @@ static int OpenVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys, bool b_demux )
...
@@ -1642,7 +1636,7 @@ static int OpenVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys, bool b_demux )
/* if MPEG encoder card, no need to do anything else after this */
/* if MPEG encoder card, no need to do anything else after this */
ControlList
(
p_obj
,
i_fd
,
var_GetBool
(
p_obj
,
"v4l2-controls-reset"
),
ControlList
(
p_obj
,
i_fd
,
var_GetBool
(
p_obj
,
"v4l2-controls-reset"
),
b_demux
);
b_demux
);
SetAvailControlsByString
(
p_obj
,
p_sys
,
i_fd
);
SetAvailControlsByString
(
p_obj
,
i_fd
);
/* Reset Cropping */
/* Reset Cropping */
memset
(
&
cropcap
,
0
,
sizeof
(
cropcap
)
);
memset
(
&
cropcap
,
0
,
sizeof
(
cropcap
)
);
...
@@ -2555,79 +2549,67 @@ static int ControlList( vlc_object_t *p_obj, int i_fd, bool b_reset,
...
@@ -2555,79 +2549,67 @@ static int ControlList( vlc_object_t *p_obj, int i_fd, bool b_reset,
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
static
void
SetAvailControlsByString
(
vlc_object_t
*
p_obj
,
demux_sys_t
*
p_sys
,
static
void
SetAvailControlsByString
(
vlc_object_t
*
p_obj
,
int
i_fd
)
int
i_fd
)
{
{
char
*
psz_parser
=
p_sys
->
psz_set_ctrls
;
char
*
ctrls
=
var_InheritString
(
p_obj
,
CFG_PREFIX
"set-ctrls"
);
vlc_value_t
val
,
text
,
name
;
if
(
ctrls
==
NULL
)
if
(
psz_parser
==
NULL
)
return
;
return
;
if
(
*
psz_parser
==
'{'
)
vlc_value_t
val
,
text
;
psz_parser
++
;
int
i_ret
=
var_Change
(
p_obj
,
"allcontrols"
,
VLC_VAR_GETCHOICES
,
if
(
var_Change
(
p_obj
,
"allcontrols"
,
VLC_VAR_GETCHOICES
,
&
val
,
&
text
)
)
&
val
,
&
text
);
if
(
i_ret
<
0
)
{
{
msg_Err
(
p_obj
,
"Oops, can't find 'allcontrols' variable."
);
msg_Err
(
p_obj
,
"Oops, can't find 'allcontrols' variable."
);
free
(
ctrls
);
return
;
return
;
}
}
while
(
*
psz_parser
&&
*
psz_parser
!=
'}'
)
char
*
p
=
ctrls
;
{
if
(
*
p
==
'{'
)
char
*
psz_delim
,
*
psz_assign
;
p
++
;
while
(
*
psz_parser
==
','
||
*
psz_parser
==
' '
)
while
(
p
!=
NULL
&&
*
p
&&
*
p
!=
'}'
)
psz_parser
++
;
{
p
+=
strspn
(
p
,
", "
);
psz_delim
=
strchr
(
psz_parser
,
','
);
const
char
*
name
=
p
;
if
(
psz_delim
==
NULL
)
char
*
end
=
strchr
(
p
,
','
);
psz_delim
=
strchr
(
psz_parser
,
'}'
);
if
(
end
==
NULL
)
if
(
psz_delim
==
NULL
)
end
=
strchr
(
p
,
'}'
);
psz_delim
=
psz_parser
+
strlen
(
psz_parser
);
if
(
end
!=
NULL
)
*
(
end
++
)
=
'\0'
;
psz_assign
=
memchr
(
psz_parser
,
'='
,
psz_delim
-
psz_parser
);
char
*
value
=
strchr
(
p
,
'='
);
if
(
psz_assign
==
NULL
)
if
(
value
==
NULL
)
{
{
char
*
psz_name
=
strndup
(
psz_parser
,
psz_delim
-
psz_parser
);
msg_Err
(
p_obj
,
"syntax error in
\"
%s
\"
: missing '='"
,
name
);
msg_Err
(
p_obj
,
"%s missing '='"
,
psz_name
);
p
=
end
;
free
(
psz_name
);
psz_parser
=
psz_delim
+
1
;
continue
;
continue
;
}
}
*
(
value
++
)
=
'\0'
;
for
(
int
i
=
0
;
for
(
int
i
=
0
;
i
<
val
.
p_list
->
i_count
;
i
++
)
i
<
val
.
p_list
->
i_count
;
//&& psz_parser < psz_assign;
i
++
)
{
{
const
char
*
psz_var
=
text
.
p_list
->
p_values
[
i
].
psz_string
;
vlc_value_t
vartext
;
int
i_cid
=
val
.
p_list
->
p_values
[
i
].
i_int
;
const
char
*
var
=
text
.
p_list
->
p_values
[
i
].
psz_string
;
var_Change
(
p_obj
,
psz_var
,
VLC_VAR_GETTEXT
,
&
name
,
NULL
);
const
char
*
psz_name
=
name
.
psz_string
;
int
i_availstrlen
=
strlen
(
psz_name
);
int
i_parsestrlen
=
psz_assign
-
psz_parser
;
int
i_maxstrlen
=
__MAX
(
i_availstrlen
,
i_parsestrlen
);
if
(
!
strncasecmp
(
psz_name
,
psz_parser
,
i_maxstrlen
)
)
var_Change
(
p_obj
,
var
,
VLC_VAR_GETTEXT
,
&
vartext
,
NULL
);
if
(
!
strcasecmp
(
vartext
.
psz_string
,
name
)
)
{
{
Control
(
p_obj
,
i_fd
,
psz_name
,
i_cid
,
Control
(
p_obj
,
i_fd
,
name
,
strtol
(
++
psz_assign
,
&
psz_parser
,
0
)
);
val
.
p_list
->
p_values
[
i
].
i_int
,
}
strtol
(
value
,
NULL
,
0
)
);
free
(
name
.
psz_string
);
free
(
vartext
.
psz_string
);
goto
found
;
}
}
free
(
vartext
.
psz_string
);
if
(
psz_parser
<
psz_assign
)
{
char
*
psz_name
=
strndup
(
psz_parser
,
psz_assign
-
psz_parser
);
msg_Err
(
p_obj
,
"Control %s not available"
,
psz_name
);
free
(
psz_name
);
psz_parser
=
(
*
psz_delim
)
?
(
psz_delim
+
1
)
:
psz_delim
;
}
}
msg_Err
(
p_obj
,
"control %s not available"
,
name
);
found:
p
=
end
;
}
}
var_FreeList
(
&
val
,
&
text
);
var_FreeList
(
&
val
,
&
text
);
free
(
ctrls
);
}
}
/*****************************************************************************
/*****************************************************************************
...
...
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