]> git.sesse.net Git - vlc/commitdiff
Fix a regression in r15404 causing people to experience artefacts and lost lock
authorSigmund Augdal Helberg <sigmunau@videolan.org>
Thu, 29 Jun 2006 17:55:14 +0000 (17:55 +0000)
committerSigmund Augdal Helberg <sigmunau@videolan.org>
Thu, 29 Jun 2006 17:55:14 +0000 (17:55 +0000)
modules/access/dvb/access.c

index 4ad0c641409e222286bcda810d02aa1143c63a6d..0e0e297cfbabadc34c6db3600516e5f3217504d8 100644 (file)
@@ -408,7 +408,7 @@ static block_t *Block( access_t *p_access )
         ufds[0].fd = p_sys->i_handle;
         ufds[0].events = POLLIN;
         ufds[1].fd = p_sys->i_frontend_handle;
-        ufds[1].events = POLLOUT;
+        ufds[1].events = POLLPRI;
 
         /* We'll wait 0.5 second if nothing happens */
         /* Find if some data is available */