Skip to content

Commit

Permalink
testing: Try minimal libass cache size on all devices
Browse files Browse the repository at this point in the history
No reports of a change in behaviour with lower settings so lets try minimal
  • Loading branch information
popcornmix committed Apr 3, 2020
1 parent ad61386 commit 1708942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/platform/linux/RBP.cpp
Expand Up @@ -91,7 +91,7 @@ void CRBP::InitializeSettings()
if (m_initialized && CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_cacheMemSize == ~0U)
CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_cacheMemSize = m_arm_mem < 256 ? 1024 * 1024 * 2 : 1024 * 1024 * 20;
if (m_initialized && CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_libAssCache == ~0U)
CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_libAssCache = m_arm_mem < 256 ? 21 : m_arm_mem < 512 ? 42 : 96;
CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_libAssCache = 21; //m_arm_mem < 256 ? 21 : m_arm_mem < 512 ? 42 : 96;
}

bool CRBP::Initialize()
Expand Down

0 comments on commit 1708942

Please sign in to comment.