Home
last modified time | relevance | path

Searched refs:enabledSurroundFormats (Results 1 – 1 of 1) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2169 String enabledSurroundFormats = Settings.Global.getString( in sendEnabledSurroundFormats() local
2171 if (enabledSurroundFormats == null) { in sendEnabledSurroundFormats()
2174 enabledSurroundFormats = ""; in sendEnabledSurroundFormats()
2176 if (!forceUpdate && TextUtils.equals(enabledSurroundFormats, mEnabledSurroundFormats)) { in sendEnabledSurroundFormats()
2182 mEnabledSurroundFormats = enabledSurroundFormats; in sendEnabledSurroundFormats()
2183 String[] surroundFormats = TextUtils.split(enabledSurroundFormats, ","); in sendEnabledSurroundFormats()
2203 private void onEnableSurroundFormats(ArrayList<Integer> enabledSurroundFormats) { in onEnableSurroundFormats() argument
2206 boolean enabled = enabledSurroundFormats.contains(surroundFormat); in onEnableSurroundFormats()