mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-17 15:47:53 +01:00

Delete unused macros BWE_MIN and BWE_MAX. Move enum RateControlState: Make it a private enum class in AimdRateControl, the only user. Change users of the header file that only need BandwidthUsage, to instead include api/network_state_predictor.h, the file defining this class. As a result, fewer dependencies on modules/remote_bitrate_estimator. Bug: None Change-Id: I4450c79dd58e1875d64dd74d1ae2cb7d911a14b3 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/195222 Reviewed-by: Sebastian Jansson <srte@webrtc.org> Reviewed-by: Björn Terelius <terelius@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32704}
26 lines
631 B
Python
26 lines
631 B
Python
include_rules = [
|
|
"+call",
|
|
"+common_audio",
|
|
"+logging/rtc_event_log",
|
|
"+modules/async_audio_processing",
|
|
"+modules/audio_coding",
|
|
"+modules/audio_device",
|
|
"+modules/audio_mixer",
|
|
"+modules/audio_processing",
|
|
"+modules/audio_processing/include",
|
|
"+modules/bitrate_controller",
|
|
"+modules/congestion_controller",
|
|
"+modules/pacing",
|
|
"+modules/rtp_rtcp",
|
|
"+modules/utility",
|
|
"+system_wrappers",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"audio_send_stream.cc": [
|
|
"+modules/audio_coding/codecs/cng/audio_encoder_cng.h",
|
|
],
|
|
"audio_transport_impl.h": [
|
|
"+modules/audio_processing/typing_detection.h",
|
|
]
|
|
}
|