
This cl/ is a NOP refactoring, moving the EncoderStreamFactory from within webrtc_video_engine.cc into own file in video/. simulcast.cc is collateral. Bug: webrtc:14451 Change-Id: Ia69b9241d8cd8a12be6628d887701f2e244c07cc Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/276861 Reviewed-by: Artem Titov <titovartem@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Rasmus Brandt <brandtr@webrtc.org> Commit-Queue: Jonas Oreland <jonaso@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Cr-Commit-Position: refs/heads/main@{#38224}
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
include_rules = [
|
|
"+call",
|
|
"+common_audio",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+media",
|
|
"+modules/audio_device",
|
|
"+modules/audio_coding/audio_network_adaptor",
|
|
"+modules/audio_coding/neteq/include",
|
|
"+modules/audio_coding/neteq/tools",
|
|
"+modules/audio_processing",
|
|
"+modules/bitrate_controller",
|
|
"+modules/remote_bitrate_estimator",
|
|
"+modules/congestion_controller",
|
|
"+modules/pacing",
|
|
"+modules/rtp_rtcp",
|
|
"+system_wrappers",
|
|
"+p2p",
|
|
"+third_party/libyuv",
|
|
"+video/config",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
".*ivf_converter\.cc": [
|
|
"+absl/debugging/failure_signal_handler.h",
|
|
"+absl/debugging/symbolize.h",
|
|
"+modules/video_coding/codecs/vp8/include/vp8.h",
|
|
"+modules/video_coding/codecs/vp9/include/vp9.h",
|
|
"+modules/video_coding/include/video_error_codes.h",
|
|
"+modules/video_coding/utility/ivf_file_writer.h",
|
|
"+modules/video_coding/codecs/h264/include/h264.h",
|
|
],
|
|
".*video_replay\.cc": [
|
|
"+modules/video_coding/utility/ivf_file_writer.h",
|
|
],
|
|
}
|