From 97fc10d6eaefb2931ca29087846176c802b525c7 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Fri, 17 Oct 2025 18:00:38 -0400 Subject: [PATCH] Increases local video disk cache to 1GB --- .../amethyst/service/playback/diskCache/VideoCache.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/playback/diskCache/VideoCache.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/playback/diskCache/VideoCache.kt index 63fa8edb7..8e2c747d8 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/playback/diskCache/VideoCache.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/playback/diskCache/VideoCache.kt @@ -34,7 +34,7 @@ import java.io.File @SuppressLint("UnsafeOptInUsageError") class VideoCache { - var exoPlayerCacheSize: Long = 150 * 1024 * 1024 // 150MB + var exoPlayerCacheSize: Long = 1000 * 1024 * 1024 // 1GB var leastRecentlyUsedCacheEvictor = LeastRecentlyUsedCacheEvictor(exoPlayerCacheSize)