AudioMixPortpublic class AudioMixPort extends AudioPort The AudioMixPort is a specialized type of AudioPort
describing an audio mix or stream at an input or output stream of the audio
framework. |
Constructors Summary |
---|
AudioMixPort(AudioHandle handle, int role, int[] samplingRates, int[] channelMasks, int[] formats, AudioGain[] gains)
super(handle, role, samplingRates, channelMasks, formats, gains);
|
Methods Summary |
---|
public AudioMixPortConfig | buildConfig(int samplingRate, int channelMask, int format, AudioGainConfig gain)Build a specific configuration of this audio mix port for use by methods
like AudioManager.connectAudioPatch().
return new AudioMixPortConfig(this, samplingRate, channelMask, format, gain);
| public boolean | equals(java.lang.Object o)
if (o == null || !(o instanceof AudioMixPort)) {
return false;
}
return super.equals(o);
|
|