Commit 36302e03 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

v4l2: disable incomplete USERPTR implementation (refs #8262)

TODO: someone fix it
parent 57a25813
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment