Use all system cores when threads are set to auto or bigger than the amount of system's cores

This commit is contained in:
Fernando Fernández 2020-11-17 14:26:05 +01:00
parent a6ad36b57a
commit d7cdaeea7d

View File

@ -2344,7 +2344,7 @@ namespace MediaBrowser.Controller.MediaEncoding
// Automatic // Automatic
if (threads <= 0 || threads >= Environment.ProcessorCount) if (threads <= 0 || threads >= Environment.ProcessorCount)
{ {
return 0; return Environment.ProcessorCount;
} }
return threads; return threads;