Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
57a25813
Commit
57a25813
authored
Mar 03, 2013
by
Rémi Denis-Courmont
Browse files
v4l2: remove broken VBI in user pointer mode (refs #8262)
parent
8d5cdf7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/v4l2/demux.c
View file @
57a25813
...
@@ -537,15 +537,6 @@ static void *UserPtrThread (void *data)
...
@@ -537,15 +537,6 @@ static void *UserPtrThread (void *data)
ufd
[
0
].
fd
=
fd
;
ufd
[
0
].
fd
=
fd
;
ufd
[
0
].
events
=
POLLIN
;
ufd
[
0
].
events
=
POLLIN
;
#ifdef ZVBI_COMPILED
if
(
sys
->
vbi
!=
NULL
)
{
ufd
[
1
].
fd
=
GetFdVBI
(
sys
->
vbi
);
ufd
[
1
].
events
=
POLLIN
;
numfds
++
;
}
#endif
int
canc
=
vlc_savecancel
();
int
canc
=
vlc_savecancel
();
for
(;;)
for
(;;)
{
{
...
@@ -566,26 +557,19 @@ static void *UserPtrThread (void *data)
...
@@ -566,26 +557,19 @@ static void *UserPtrThread (void *data)
vlc_cleanup_pop
();
vlc_cleanup_pop
();
canc
=
vlc_savecancel
();
canc
=
vlc_savecancel
();
if
(
ufd
[
0
].
revents
)
if
(
v4l2_ioctl
(
fd
,
VIDIOC_DQBUF
,
&
buf
)
<
0
)
{
{
if
(
v4l2_ioctl
(
fd
,
VIDIOC_DQBUF
,
&
buf
)
<
0
)
msg_Err
(
demux
,
"cannot dequeue buffer: %m"
);
{
block_Release
(
block
);
msg_Err
(
demux
,
"cannot dequeue buffer: %m"
);
continue
;
block_Release
(
block
);
continue
;
}
assert
(
block
->
p_buffer
==
(
void
*
)
buf
.
m
.
userptr
);
block
->
i_buffer
=
buf
.
length
;
block
->
i_pts
=
block
->
i_dts
=
mdate
();
block
->
i_flags
|=
sys
->
block_flags
;
es_out_Control
(
demux
->
out
,
ES_OUT_SET_PCR
,
block
->
i_pts
);
es_out_Send
(
demux
->
out
,
sys
->
es
,
block
);
}
}
#ifdef ZVBI_COMPILED
if
(
sys
->
vbi
!=
NULL
&&
ufd
[
1
].
revents
)
assert
(
block
->
p_buffer
==
(
void
*
)
buf
.
m
.
userptr
);
GrabVBI
(
demux
,
sys
->
vbi
);
block
->
i_buffer
=
buf
.
length
;
#endif
block
->
i_pts
=
block
->
i_dts
=
mdate
();
block
->
i_flags
|=
sys
->
block_flags
;
es_out_Control
(
demux
->
out
,
ES_OUT_SET_PCR
,
block
->
i_pts
);
es_out_Send
(
demux
->
out
,
sys
->
es
,
block
);
}
}
vlc_restorecancel
(
canc
);
/* <- hmm, this is purely cosmetic */
vlc_restorecancel
(
canc
);
/* <- hmm, this is purely cosmetic */
return
NULL
;
return
NULL
;
...
...
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