Searched defs:channelMasks (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/media/java/android/media/
H A DAudioMixPort.java34 int[] samplingRates, int[] channelMasks, int[] channelIndexMasks,
36 super(handle, role, deviceName, samplingRates, channelMasks, channelIndexMasks,
33 AudioMixPort(AudioHandle handle, int ioHandle, int role, String deviceName, int[] samplingRates, int[] channelMasks, int[] channelIndexMasks, int[] formats, AudioGain[] gains) argument
H A DAudioDevicePort.java40 int[] samplingRates, int[] channelMasks, int[] channelIndexMasks,
45 deviceName, samplingRates, channelMasks, channelIndexMasks, formats, gains);
39 AudioDevicePort(AudioHandle handle, String deviceName, int[] samplingRates, int[] channelMasks, int[] channelIndexMasks, int[] formats, AudioGain[] gains, int type, String address) argument
H A DAudioPort.java80 int[] samplingRates, int[] channelMasks, int[] channelIndexMasks,
87 mChannelMasks = channelMasks;
133 public int[] channelMasks() { method in class:AudioPort
79 AudioPort(AudioHandle handle, int role, String name, int[] samplingRates, int[] channelMasks, int[] channelIndexMasks, int[] formats, AudioGain[] gains) argument
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioProfile.h40 audio_channel_mask_t channelMasks,
45 mChannelMasks.add(channelMasks);
50 const ChannelsVector &channelMasks,
54 mChannelMasks(channelMasks),
60 void setChannels(const ChannelsVector &channelMasks) argument
63 mChannelMasks = channelMasks;
318 void setChannelsFor(const ChannelsVector &channelMasks, audio_format_t format) argument
325 sp<AudioProfile> profileToAdd = new AudioProfile(format, channelMasks,
330 profile->setChannels(channelMasks);
39 AudioProfile(audio_format_t format, audio_channel_mask_t channelMasks, uint32_t samplingRate) argument
49 AudioProfile(audio_format_t format, const ChannelsVector &channelMasks, const SampleRateVector &samplingRateCollection) argument
H A DSerializer.h73 static const char channelMasks[]; member in struct:android::AudioProfileTraits::Attributes
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSerializer.cpp193 const char AudioProfileTraits::Attributes::channelMasks[] = "channelMasks"; member in class:android::AudioProfileTraits::Attributes
200 string channels = getXmlAttribute(root, Attributes::channelMasks);
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp5362 ChannelsVector &channelMasks = *channelMasksPtr; local
5366 // If NEVER, then remove support for channelMasks > stereo.
5368 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5369 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5372 channelMasks.removeAt(maskIndex);
5381 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); maskIndex++) {
5382 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5390 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5424 ChannelsVector channelMasks; local
5448 channelMasks
[all...]

Completed in 1111 milliseconds