You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
win32: improve threading algorithm warning
If no threading is requested do not issue warning about unsupported threading algorithm.
This commit is contained in:
@@ -130,8 +130,10 @@ int ff_thread_init(AVCodecContext *s){
|
|||||||
ThreadContext *c;
|
ThreadContext *c;
|
||||||
uint32_t threadid;
|
uint32_t threadid;
|
||||||
|
|
||||||
if(!(s->thread_type & FF_THREAD_SLICE)){
|
if (s->thread_type && !(s->thread_type & FF_THREAD_SLICE)) {
|
||||||
av_log(s, AV_LOG_WARNING, "The requested thread algorithm is not supported with this thread library.\n");
|
av_log(s, AV_LOG_WARNING,
|
||||||
|
"This thread library only supports FF_THREAD_SLICE"
|
||||||
|
" threading algorithm.\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user