Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
36302e03
Commit
36302e03
authored
Mar 03, 2013
by
Rémi Denis-Courmont
Browse files
v4l2: disable incomplete USERPTR implementation (refs #8262)
TODO: someone fix it
parent
57a25813
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/v4l2/demux.c
View file @
36302e03
...
...
@@ -410,7 +410,7 @@ static int InitVideo (demux_t *demux, int fd, uint32_t caps)
void
*
(
*
entry
)
(
void
*
);
if
(
caps
&
V4L2_CAP_STREAMING
)
{
if
(
StartUserPtr
(
VLC_OBJECT
(
demux
),
fd
)
==
0
)
if
(
0
/* BROKEN */
&&
StartUserPtr
(
VLC_OBJECT
(
demux
),
fd
)
==
0
)
{
/* In principles, mmap() will pad the length to a multiple of the
* page size, so there is no need to care. Nevertheless with the
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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