These are the changes made to WebRtcVoiceEngine and surrounding code. It still contains some things that are inelegant, like how AudioCodecSpec and AudioFormatInfo is ferried around in SendCodecSpec. This should probably be resolved before landing. There are also a few test still that are disabled. They should be removed or fixed, as the case may be. I've put this CL up to get a better overview of the changes made and how reviewable they are. BUG=webrtc:5806 Review-Url: https://codereview.webrtc.org/2705093002 Cr-Commit-Position: refs/heads/master@{#17904}
30 lines
893 B
Python
30 lines
893 B
Python
include_rules = [
|
|
"+webrtc/base",
|
|
"+webrtc/call",
|
|
"+webrtc/common_audio",
|
|
"+webrtc/logging/rtc_event_log",
|
|
"+webrtc/modules/audio_coding",
|
|
"+webrtc/modules/audio_device",
|
|
"+webrtc/modules/audio_mixer",
|
|
"+webrtc/modules/audio_processing/include",
|
|
"+webrtc/modules/bitrate_controller",
|
|
"+webrtc/modules/congestion_controller",
|
|
"+webrtc/modules/pacing",
|
|
"+webrtc/modules/remote_bitrate_estimator",
|
|
"+webrtc/modules/rtp_rtcp",
|
|
"+webrtc/system_wrappers",
|
|
"+webrtc/voice_engine",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"audio_send_stream.cc": [
|
|
"+webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h",
|
|
],
|
|
# TODO(ossu): Remove this exception when builtin_audio_encoder_factory.h
|
|
# has moved to api/, or when the proper mocks have been made.
|
|
"audio_send_stream_unittest.cc": [
|
|
"+webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory.h",
|
|
],
|
|
}
|
|
|