output/osx: remove sleep call from render callback

Blocking inside the render callback is forbidden, and this sleep call
didn't make any sense.
This commit is contained in:
Max Kellermann
2011-12-24 17:56:10 +01:00
parent 3a9697adf2
commit f405d27c56
2 changed files with 1 additions and 4 deletions

View File

@@ -142,10 +142,6 @@ osx_render(void *vdata,
buffer->mDataByteSize = buffer_size;
if (!buffer_size) {
g_usleep(1000);
}
return 0;
}