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
095f0837
Commit
095f0837
authored
Mar 29, 2009
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless code.
parent
e1fd82bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
modules/access/v4l2.c
modules/access/v4l2.c
+2
-8
No files found.
modules/access/v4l2.c
View file @
095f0837
...
...
@@ -1739,7 +1739,6 @@ static int OpenVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys, bool b_demux )
enum
v4l2_buf_type
buf_type
;
const
char
*
psz_device
=
p_sys
->
psz_device
;
es_format_t
es_fmt
;
int
libv4l2_fd
;
if
(
(
i_fd
=
open
(
psz_device
,
O_RDWR
)
)
<
0
)
{
...
...
@@ -1756,13 +1755,11 @@ static int OpenVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys, bool b_demux )
device is not a v4l2 device. */
if
(
p_sys
->
b_libv4l2
)
{
int
libv4l2_fd
;
libv4l2_fd
=
v4l2_fd_open
(
i_fd
,
V4L2_ENABLE_ENUM_FMT_EMULATION
);
if
(
libv4l2_fd
!=
-
1
)
i_fd
=
libv4l2_fd
;
}
else
#else
libv4l2_fd
=
i_fd
;
#endif
/* Tune the tuner */
...
...
@@ -2195,7 +2192,6 @@ static bool ProbeVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys,
int
i_standard
;
int
i_fd
;
int
libv4l2_fd
;
if
(
(
i_fd
=
open
(
psz_device
,
O_RDWR
)
)
<
0
)
{
...
...
@@ -2212,13 +2208,11 @@ static bool ProbeVideoDev( vlc_object_t *p_obj, demux_sys_t *p_sys,
device is not a v4l2 device. */
if
(
p_sys
->
b_libv4l2
)
{
int
libv4l2_fd
;
libv4l2_fd
=
v4l2_fd_open
(
i_fd
,
V4L2_ENABLE_ENUM_FMT_EMULATION
);
if
(
libv4l2_fd
!=
-
1
)
i_fd
=
libv4l2_fd
;
}
else
#else
libv4l2_fd
=
i_fd
;
#endif
/* Get device capabilites */
...
...
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