Remove Legacy ADM from AppRTC mobile

The Legacy ADM has remained to be available for testing. Now we are
ready to move on to using only the Java ADM.

Bug: webrtc:7452
Change-Id: Ic95b04b933e165f3c16b587a44384a2c965ef16c
Reviewed-on: https://webrtc-review.googlesource.com/c/123921
Reviewed-by: Sami Kalliomäki <sakal@webrtc.org>
Commit-Queue: Paulina Hensman <phensman@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26852}
This commit is contained in:
Paulina Hensman
2019-02-22 16:31:28 +01:00
committed by Commit Bot
parent 0bf4c29852
commit 22dab11270
9 changed files with 7 additions and 127 deletions

View File

@ -309,7 +309,7 @@ public class PeerConnectionClientTest implements PeerConnectionEvents {
false, /* saveInputAudioToFile */
false /* useOpenSLES */, false /* disableBuiltInAEC */, false /* disableBuiltInAGC */,
false /* disableBuiltInNS */, false /* disableWebRtcAGC */, false /* enableRtcEventLog */,
false /* useLegacyAudioDevice */, null /* dataChannelParameters */);
null /* dataChannelParameters */);
}
private VideoCapturer createCameraCapturer(boolean captureToTexture) {
@ -346,7 +346,7 @@ public class PeerConnectionClientTest implements PeerConnectionEvents {
false, /* saveInputAudioToFile */
false /* useOpenSLES */, false /* disableBuiltInAEC */, false /* disableBuiltInAGC */,
false /* disableBuiltInNS */, false /* disableWebRtcAGC */, false /* enableRtcEventLog */,
false /* useLegacyAudioDevice */, null /* dataChannelParameters */);
null /* dataChannelParameters */);
}
@Before