-
Notifications
You must be signed in to change notification settings - Fork 1
Modifications
The WebRtc library itself has been modified (beyond Pixiv's modifications) in the following ways. (This changelist does not include wrapper alterations.)
-
AudioDeviceWindowsCore::BuiltInAECIsAvailable()(audio_device_core_win.cc) has been modified to always returnfalse. See Issue #6, b19352. -
The default audio device for Windows has been changed from
kDefaultCommunicationDevicetokDefaultDevice. See this thread for more information. The change is made by updating theAUDIO_DEVICE_IDdefine inadm_helpers.ccand (legacy) the_inputDevice&_outputDeviceinitialisers inaudio_device_core_win.cc. See ad4aa2f, a525fb. -
The recording channel options
_recChannelsPrioListfor the Windows Core Audio has been changed from1,2 & 4to1 & 2, asaudio_transport_impl.cchas an RTC Debug Check that the number of channels is less than or equal to 2. See d5670e1. -
The Android
libjingle_peerconnection_solibrary has been modified to export all symbols, not just those matching the jni. This is done by removing the lineconfigs += [ "//build/config/android:hide_all_but_jni" ]from thertc_shared_library("libjingle_peerconnection_so")module definition in\src\sdk\android\BUILD.gn. See e06660.