Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
9dfa7a91
Commit
9dfa7a91
authored
Feb 05, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linsys_hdsdi: do not fail on EINTR
parent
60bb7478
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
modules/access/linsys/linsys_hdsdi.c
modules/access/linsys/linsys_hdsdi.c
+4
-11
No files found.
modules/access/linsys/linsys_hdsdi.c
View file @
9dfa7a91
...
...
@@ -675,12 +675,8 @@ static int InitCapture( demux_t *p_demux )
pfd
[
0
].
fd
=
p_sys
->
i_vfd
;
pfd
[
0
].
events
=
POLLPRI
;
if
(
poll
(
pfd
,
1
,
READ_TIMEOUT
)
<
0
)
{
msg_Warn
(
p_demux
,
"couldn't poll(): %s"
,
vlc_strerror_c
(
errno
)
);
close
(
p_sys
->
i_vfd
);
return
VLC_EGENERIC
;
}
if
(
poll
(
pfd
,
1
,
READ_TIMEOUT
)
<
0
)
continue
;
if
(
pfd
[
0
].
revents
&
POLLPRI
)
{
...
...
@@ -931,11 +927,8 @@ static int Capture( demux_t *p_demux )
pfd
[
1
].
events
=
POLLIN
|
POLLPRI
;
}
if
(
poll
(
pfd
,
1
+
(
p_sys
->
i_max_channel
!=
-
1
),
READ_TIMEOUT
)
<
0
)
{
msg_Warn
(
p_demux
,
"couldn't poll(): %s"
,
vlc_strerror_c
(
errno
)
);
return
VLC_EGENERIC
;
}
if
(
poll
(
pfd
,
1
+
(
p_sys
->
i_max_channel
!=
-
1
),
READ_TIMEOUT
)
<
0
)
return
VLC_SUCCESS
;
if
(
pfd
[
0
].
revents
&
POLLPRI
)
{
...
...
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