org.webrtc.audio.AudioDeviceModule Java Examples
The following examples show how to use
org.webrtc.audio.AudioDeviceModule.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PeerConnectionFactory.java From webrtc_android with MIT License | 4 votes |
public Builder setAudioDeviceModule(AudioDeviceModule audioDeviceModule) { this.audioDeviceModule = audioDeviceModule; return this; }
Example #2
Source File: ContextInitialization.java From owt-client-android with Apache License 2.0 | 2 votes |
/** * Set the customized audio device module. * * @param adm AudioDeviceModule to be set. * @return ContextInitialization */ public ContextInitialization setCustomizedAudioDeviceModule(AudioDeviceModule adm) { RCHECK(!initialized); PCFactoryProxy.adm = adm; return this; }