Add switch to disable volume normalization

This commit is contained in:
vfsfitvnm
2022-06-21 23:08:39 +02:00
parent 97cd23c991
commit 1ff666dd12
3 changed files with 20 additions and 18 deletions

View File

@@ -25,6 +25,7 @@ class Preferences(holder: SharedPreferences) : SharedPreferences by holder {
var coilDiskCacheMaxSizeBytes by preference("coilDiskCacheMaxSizeBytes", 512L * 1024 * 1024)
var exoPlayerDiskCacheMaxSizeBytes by preference("exoPlayerDiskCacheMaxSizeBytes", 512L * 1024 * 1024)
var skipSilence by preference("skipSilence", false)
var volumeNormalization by preference("volumeNormalization", true)
var yourPlaylistsGridRowCount by preference("yourPlaylistsGridRowCount", 2)
}