Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2572 String enabledSurroundFormats = mSettings.getGlobalString( in sendEnabledSurroundFormats() local
2574 if (enabledSurroundFormats == null) { in sendEnabledSurroundFormats()
2577 enabledSurroundFormats = ""; in sendEnabledSurroundFormats()
2579 if (!forceUpdate && TextUtils.equals(enabledSurroundFormats, mEnabledSurroundFormats)) { in sendEnabledSurroundFormats()
2585 mEnabledSurroundFormats = enabledSurroundFormats; in sendEnabledSurroundFormats()
2586 String[] surroundFormats = TextUtils.split(enabledSurroundFormats, ","); in sendEnabledSurroundFormats()
2606 private void onEnableSurroundFormats(ArrayList<Integer> enabledSurroundFormats) { in onEnableSurroundFormats() argument
2609 boolean enabled = enabledSurroundFormats.contains(surroundFormat); in onEnableSurroundFormats()