Skip to content
Snippets Groups Projects
Commit 18c3313e authored by Lukasz Marek's avatar Lukasz Marek Committed by Michael Niedermayer
Browse files

lavd/sdl: make waiting spurious wakeup aware

parent 4bcc6feb
No related branches found
No related tags found
No related merge requests found
...@@ -292,7 +292,7 @@ static int sdl_write_header(AVFormatContext *s) ...@@ -292,7 +292,7 @@ static int sdl_write_header(AVFormatContext *s)
/* wait until the video system has been inited */ /* wait until the video system has been inited */
SDL_LockMutex(sdl->mutex); SDL_LockMutex(sdl->mutex);
if (!sdl->inited) { while (!sdl->inited) {
SDL_CondWait(sdl->init_cond, sdl->mutex); SDL_CondWait(sdl->init_cond, sdl->mutex);
} }
SDL_UnlockMutex(sdl->mutex); SDL_UnlockMutex(sdl->mutex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment