Home
last modified time | relevance | path

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

/aosp14/frameworks/base/media/java/android/media/
H A DMicrophoneInfo.java172 List<Pair<Integer, Integer>> channelMapping, float sensitivity, float maxSpl, in MicrophoneInfo() argument
183 mChannelMapping = channelMapping; in MicrophoneInfo()
376 public void setChannelMapping(List<Pair<Integer, Integer>> channelMapping) { in setChannelMapping() argument
377 mChannelMapping = channelMapping; in setChannelMapping()
H A DMediaRecorder.java1784 ArrayList<Pair<Integer, Integer>> channelMapping = new ArrayList<>(); in getActiveMicrophones() local
1786 channelMapping.add(new Pair(i, MicrophoneInfo.CHANNEL_MAPPING_DIRECT)); in getActiveMicrophones()
1788 microphone.setChannelMapping(channelMapping); in getActiveMicrophones()
H A DAudioRecord.java2218 ArrayList<Pair<Integer, Integer>> channelMapping = new ArrayList<>(); in getActiveMicrophones() local
2220 channelMapping.add(new Pair(i, MicrophoneInfo.CHANNEL_MAPPING_DIRECT)); in getActiveMicrophones()
2222 microphone.setChannelMapping(channelMapping); in getActiveMicrophones()
/aosp14/frameworks/base/core/jni/
H A Dandroid_media_MicrophoneInfo.cpp96 const auto &channelMapping = micInfo.channel_mapping; in convertMicrophoneInfoFromNative() local
97 for (size_t i = 0; i < std::size(channelMapping); i++) { in convertMicrophoneInfoFromNative()
98 int channelMappingType = channelMapping[i]; in convertMicrophoneInfoFromNative()