mirror of
https://github.com/mpv-player/mpv
synced 2025-03-07 14:47:53 +00:00
Revert "cocoa: perform init and uninit synchronously"
This reverts commit a0ac8b6331
.
This commit is contained in:
parent
f5a19f6328
commit
421bce0077
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user