player: disable section playlist by default

This commit is contained in:
Yuriy Liskov 2024-04-29 17:22:30 +03:00
parent 3e2f9d5fd8
commit 771387989a
1 changed files with 2 additions and 1 deletions

View File

@ -594,7 +594,8 @@ public class PlayerTweaksData implements ProfileChangeListener {
mIsSonyFrameDropFixEnabled = Helpers.parseBoolean(split, 29, false);
mIsBufferOnStreamsDisabled = Helpers.parseBoolean(split, 30, false);
// Cause severe garbage collector stuttering
mIsSectionPlaylistEnabled = Helpers.parseBoolean(split, 31, VERSION.SDK_INT > 21 && Helpers.getDeviceRam(mPrefs.getContext()) > 1_000_000_000);
//mIsSectionPlaylistEnabled = Helpers.parseBoolean(split, 31, VERSION.SDK_INT > 21 && Helpers.getDeviceRam(mPrefs.getContext()) > 1_000_000_000);
mIsSectionPlaylistEnabled = Helpers.parseBoolean(split, 31, false);
mIsScreenOffTimeoutEnabled = Helpers.parseBoolean(split, 32, false);
mScreenOffTimeoutSec = Helpers.parseInt(split, 33, 0);
mIsUIAnimationsEnabled = Helpers.parseBoolean(split, 34, false);