Original commit message from CVS:
* sys/dvb/gstdvbsrc.c:
With constant read failures, make sure we exit the read_device
method.
+2008-12-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
+
+ * sys/dvb/gstdvbsrc.c:
+ With constant read failures, make sure we exit the read_device
+ method.
+
2008-12-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* sys/dvb/gstdvbsrc.c:
}
} else if (errno == -EINTR) { // poll interrupted
- ;
+ if (attempts % 50 == 0) {
+ gst_buffer_unref (buf);
+ return NULL;
+ };
}
}