remove sleep from polling midi queue in reloaded

print sample info with speed and position info of fx-chain
This commit is contained in:
niels
2010-10-26 22:56:26 +00:00
parent d10983e28d
commit ab18f577f8
4 changed files with 29 additions and 13 deletions

View File

@@ -5641,7 +5641,8 @@ GdkPixbuf *vj_gdk_pixbuf_scale_simple( GdkPixbuf *src, int dw, int dh, GdkInterp
void gveejay_sleep( void *u )
{
struct timespec nsecsleep;
nsecsleep.tv_nsec = 1000000 * 4;
// nsecsleep.tv_nsec = 1000000 * 4; //@ too long
nsecsleep.tv_nsec = 500000;
nsecsleep.tv_sec = 0;
nanosleep( &nsecsleep, NULL );
}