-
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
kDefaultCommunicationDevice
tokDefaultDevice
. See this thread for more information. The change is made by updating theAUDIO_DEVICE_ID
define inadm_helpers.cc
and (legacy) the_inputDevice
&_outputDevice
initialisers inaudio_device_core_win.cc
. See ad4aa2f, a525fb. -
The recording channel options
_recChannelsPrioList
for the Windows Core Audio has been changed from1,2 & 4
to1 & 2
, asaudio_transport_impl.cc
has an RTC Debug Check that the number of channels is less than or equal to 2. See d5670e1. -
The Android
libjingle_peerconnection_so
library 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.