mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
shmsink: continue polling after EINTR
https://bugzilla.gnome.org/show_bug.cgi?id=779856
This commit is contained in:
parent
79be2e8b7b
commit
1e77971dff
1 changed files with 9 additions and 1 deletions
|
@ -779,11 +779,19 @@ pollthread_func (gpointer data)
|
|||
GstShmSink *self = GST_SHM_SINK (data);
|
||||
GList *item;
|
||||
GstClockTime timeout = GST_CLOCK_TIME_NONE;
|
||||
int rv = 0;
|
||||
|
||||
while (!self->stop) {
|
||||
|
||||
if (gst_poll_wait (self->poll, timeout) < 0)
|
||||
do {
|
||||
rv = gst_poll_wait (self->poll, timeout);
|
||||
} while (rv < 0 && errno == EINTR);
|
||||
|
||||
if (rv < 0) {
|
||||
GST_ELEMENT_ERROR (self, RESOURCE, READ, ("Failed waiting on fd activity"),
|
||||
("gst_poll_wait returned %d, errno: %d", rv, errno));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
timeout = GST_CLOCK_TIME_NONE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue