mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-04-09 17:26:20 +00:00
Improve fast AES heuristic for Linux ARM and unknown platforms
This commit is contained in:
@@ -605,8 +605,8 @@ bool Session::initialize()
|
||||
|
||||
#ifndef STEAM_LINK
|
||||
// Opt-in to all encryption features if we detect that the platform
|
||||
// has AES cryptography acceleration instructions.
|
||||
if (StreamUtils::hasFastAes()) {
|
||||
// has AES cryptography acceleration instructions and more than 2 cores.
|
||||
if (StreamUtils::hasFastAes() && SDL_GetCPUCount() > 2) {
|
||||
m_StreamConfig.encryptionFlags = ENCFLG_ALL;
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user