Skip to content

Commit

Permalink
Merge pull request #19646 from arnova/Matrix_cache_remote_by_default
Browse files Browse the repository at this point in the history
changed: By default enable filecache for all remote filesystems (CACH…
  • Loading branch information
DaveTBlake committed May 1, 2021
2 parents 937be6c + 6efb43e commit 493c045
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/settings/AdvancedSettings.cpp
Expand Up @@ -379,8 +379,9 @@ void CAdvancedSettings::Initialize()
m_PVRDefaultSortOrder.sortOrder = SortOrderDescending;

m_cacheMemSize = 1024 * 1024 * 20; // 20 MiB
m_cacheBufferMode = CACHE_BUFFER_MODE_INTERNET; // Default (buffer all internet streams/filesystems)
m_cacheBufferMode = CACHE_BUFFER_MODE_REMOTE; // Default (buffer all remote filesystems)
m_cacheChunkSize = 128 * 1024; // 128 KiB

// the following setting determines the readRate of a player data
// as multiply of the default data read rate
m_cacheReadFactor = 4.0f;
Expand Down

0 comments on commit 493c045

Please sign in to comment.