Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
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()
DMediaRecorder.java1760 ArrayList<Pair<Integer, Integer>> channelMapping = new ArrayList<>(); in getActiveMicrophones() local
1762 channelMapping.add(new Pair(i, MicrophoneInfo.CHANNEL_MAPPING_DIRECT)); in getActiveMicrophones()
1764 microphone.setChannelMapping(channelMapping); in getActiveMicrophones()
DAudioRecord.java2003 ArrayList<Pair<Integer, Integer>> channelMapping = new ArrayList<>(); in getActiveMicrophones() local
2005 channelMapping.add(new Pair(i, MicrophoneInfo.CHANNEL_MAPPING_DIRECT)); in getActiveMicrophones()
2007 microphone.setChannelMapping(channelMapping); in getActiveMicrophones()
/frameworks/av/include/media/
DMicrophoneInfo.h86 parcelable->channelMapping = mChannelMapping; in writeToParcelable()
122 if (parcelable.channelMapping.size() != AUDIO_CHANNEL_COUNT_MAX) { in readFromParcelable()
125 mChannelMapping = parcelable.channelMapping; in readFromParcelable()
/frameworks/av/aidl/android/media/
DMicrophoneInfoData.aidl34 int[] channelMapping;