]> git.sesse.net Git - vlc/commitdiff
Reduce our usleep hack time from 50ms to 10ms (a frame is 40ms...).
authorSteinar Gunderson <sgunderson@bigfoot.com>
Thu, 23 Sep 2010 23:56:41 +0000 (01:56 +0200)
committerSteinar Gunderson <sgunderson@bigfoot.com>
Thu, 23 Sep 2010 23:56:41 +0000 (01:56 +0200)
modules/access/sdi.cpp

index 35d957da5cda7f9a96c22c50467faa608a8da447..0e63d0cc3703218db0733b86be4e3faf7392d0b8 100644 (file)
@@ -258,7 +258,7 @@ static int Demux( demux_t *p_demux )
     }
     else
     {
-        usleep(50000);  // FIXME
+        usleep(10000);  // FIXME
     }
 
     return 1;