mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
Merge commit 'eb90a2091ffb94d8c29aaa5ff50f4192520254fc'
* commit 'eb90a2091ffb94d8c29aaa5ff50f4192520254fc': pthread: Fix deadlock during thread initialization Conflicts: libavcodec/pthread.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
005200887b
@ -75,7 +75,8 @@ static void* attribute_align_arg worker(void *v)
|
||||
if (c->current_job == nb_threads + c->nb_jobs)
|
||||
pthread_cond_signal(&c->last_job_cond);
|
||||
|
||||
pthread_cond_wait(&c->current_job_cond, &c->current_job_lock);
|
||||
if (!c->done)
|
||||
pthread_cond_wait(&c->current_job_cond, &c->current_job_lock);
|
||||
our_job = self_id;
|
||||
|
||||
if (c->done) {
|
||||
|
Loading…
Reference in New Issue
Block a user