davidliu
Committed by GitHub

Update webrtc to 114.5735.09 (#404)

[versions]
webrtc = "114.5735.08"
leakcanaryAndroid = "2.8.1"
preferenceKtx = "1.2.1"
webrtc = "114.5735.09"
androidJainSipRi = "1.3.0-91"
androidx-core = "1.10.1"
... ... @@ -14,8 +12,10 @@ groupie = "2.9.0"
junit-lib = "4.13.2"
junit-jupiter = "5.5.0"
kotlinx-serialization = "1.5.0"
leakcanaryAndroid = "2.8.1"
lint = "30.0.1"
okhttp = "4.12.0"
preferenceKtx = "1.2.1"
protobuf = "3.22.0"
protobufJavalite = "3.22.0"
semver4j = "3.1.0"
... ...
... ... @@ -84,9 +84,7 @@ class CustomAudioProcessingFactory(private var audioProcessorOptions: AudioProce
}
override fun reset(newRate: Int) {
// bug in webrtc lib causes newRate to be off by a factor of 10
// TODO: remove divide by 10 when updating libwebrtc
audioProcessing?.resetAudioProcessing(newRate / 10)
audioProcessing?.resetAudioProcessing(newRate)
}
override fun process(numBands: Int, numFrames: Int, buffer: ByteBuffer?) {
... ...
... ... @@ -92,4 +92,5 @@ fun RTCConfiguration.copyFrom(config: RTCConfiguration) {
turnLoggingId = config.turnLoggingId
enableImplicitRollback = config.enableImplicitRollback
offerExtmapAllowMixed = config.offerExtmapAllowMixed
enableIceGatheringOnAnyAddressPorts = config.enableIceGatheringOnAnyAddressPorts
}
... ...