mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
pthreads: reset active_thread_type when slice thread_init returrns early
This commit is contained in:
parent
fede015468
commit
f77f640b30
@ -237,8 +237,10 @@ static int thread_init(AVCodecContext *avctx)
|
||||
ThreadContext *c;
|
||||
int thread_count = avctx->thread_count;
|
||||
|
||||
if (thread_count <= 1)
|
||||
if (thread_count <= 1) {
|
||||
avctx->active_thread_type = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
c = av_mallocz(sizeof(ThreadContext));
|
||||
if (!c)
|
||||
|
Loading…
Reference in New Issue
Block a user