Searched refs:surroundFormats (Results 1 – 3 of 3) sorted by relevance
2501 auto surroundFormats = std::make_unique<audio_format_t[]>(numSurroundFormats); in android_media_AudioSystem_getSurroundFormats() local2503 status = AudioSystem::getSurroundFormats(&numSurroundFormats, &surroundFormats[0], in android_media_AudioSystem_getSurroundFormats()2511 int audioFormat = audioFormatFromNative(surroundFormats[i]); in android_media_AudioSystem_getSurroundFormats()2514 ALOGW("Unknown surround native audio format for JAVA API: %u", surroundFormats[i]); in android_media_AudioSystem_getSurroundFormats()2549 auto surroundFormats = std::make_unique<audio_format_t[]>(numSurroundFormats); in android_media_AudioSystem_getReportedSurroundFormats() local2550 status = AudioSystem::getReportedSurroundFormats(&numSurroundFormats, &surroundFormats[0]); in android_media_AudioSystem_getReportedSurroundFormats()2557 int audioFormat = audioFormatFromNative(surroundFormats[i]); in android_media_AudioSystem_getReportedSurroundFormats()2560 ALOGW("Unknown surround native audio format for JAVA API: %u", surroundFormats[i]); in android_media_AudioSystem_getReportedSurroundFormats()
2028 public static native int getSurroundFormats(Map<Integer, Boolean> surroundFormats); in getSurroundFormats() argument2031 public static native int getReportedSurroundFormats(ArrayList<Integer> surroundFormats); in getReportedSurroundFormats() argument
2396 Map<Integer, Boolean> surroundFormats = new HashMap<>(); in getSurroundFormats() local2397 int status = AudioSystem.getSurroundFormats(surroundFormats); in getSurroundFormats()2403 return surroundFormats; in getSurroundFormats()2586 String[] surroundFormats = TextUtils.split(enabledSurroundFormats, ","); in sendEnabledSurroundFormats() local2588 for (String format : surroundFormats) { in sendEnabledSurroundFormats()