Revert "cocoa: perform init and uninit synchronously"

This reverts commit a0ac8b6331.
This commit is contained in:
Stefano Pigozzi 2014-10-18 14:26:37 +02:00
parent f5a19f6328
commit 421bce0077
1 changed files with 3 additions and 1 deletions

View File

@ -95,7 +95,9 @@ static void with_cocoa_lock(struct vo *vo, void(^block)(void))
static void with_cocoa_lock_on_main_thread(struct vo *vo, void(^block)(void))
{
dispatch_sync(dispatch_get_main_queue(), block);
dispatch_async(dispatch_get_main_queue(), ^{
with_cocoa_lock(vo, block);
});
}
static void queue_new_video_size(struct vo *vo, int w, int h)