mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Use consistent condition for whether to run slice-threading execute function.
This commit is contained in:
parent
46027c7286
commit
e9ccdae09b
@ -2344,7 +2344,7 @@ static int decode_chunks(AVCodecContext *avctx,
|
||||
break;
|
||||
|
||||
case PICTURE_START_CODE:
|
||||
if (avctx->thread_count > 1 && s->slice_count) {
|
||||
if (HAVE_THREADS && (avctx->active_thread_type&FF_THREAD_SLICE) && s->slice_count) {
|
||||
int i;
|
||||
|
||||
avctx->execute(avctx, slice_decode_thread,
|
||||
|
Loading…
Reference in New Issue
Block a user