feat(audio): add native audio processing and Google Cast support

This commit is contained in:
2026-04-05 14:38:05 +02:00
parent d40ae6b746
commit 1564fa3dc4
6 changed files with 119 additions and 9 deletions
@@ -277,4 +277,13 @@ object PreferencesHelper {
fun loadEqMid(): Float = sharedPreferences.getInt(Keys.PREF_EQ_MID, 0).toFloat()
fun loadEqHigh(): Float = sharedPreferences.getInt(Keys.PREF_EQ_HIGH, 0).toFloat()
/* Resets Equalizer settings to default */
fun resetEqualizer() {
sharedPreferences.edit {
putInt(Keys.PREF_EQ_LOW, 0)
putInt(Keys.PREF_EQ_MID, 0)
putInt(Keys.PREF_EQ_HIGH, 0)
}
}
}