This is a first CL wiring up AudioSendStream to BitrateAllocator. This is still experimental and there is a test added for the audio only case, combined audio video variable bitrate test cases will be added as a follow up. BUG=5079 Review-Url: https://codereview.webrtc.org/2165743003 Cr-Commit-Position: refs/heads/master@{#13527}
23 lines
539 B
Python
23 lines
539 B
Python
include_rules = [
|
|
"+webrtc/base",
|
|
"+webrtc/voice_engine",
|
|
"+webrtc/modules/audio_coding/codecs/mock",
|
|
"+webrtc/call",
|
|
"+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_receive_stream_unittest\.cc": [
|
|
"+webrtc/call/mock",
|
|
],
|
|
"audio_send_stream_unittest\.cc": [
|
|
"+webrtc/call/mock",
|
|
],
|
|
}
|