This cl/ changes so that the EncoderStreamFactory is not created inside WebRtcVideoSendStream (webrtc_video_engine). The benifit of this is that the VideoStreamEncoder can then amend the EncoderStreamFactory with state (and types) w/o exposing it in VideoEncoderConfig. I.e as an alternative to changes done inside https://webrtc-review.googlesource.com/c/src/+/276742. The fake_webrtc_call is modified to (if needed) create it's own EncoderStreamFactory if needed. Note: this cl/ will have to be merged with with https://webrtc-review.googlesource.com/c/src/+/277002. Bug: webrtc:14451 Change-Id: I3d896b227d39725ba6409622e8d09d14bd45d5fe Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/277160 Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Commit-Queue: Jonas Oreland <jonaso@webrtc.org> Reviewed-by: Rasmus Brandt <brandtr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#38237}
35 lines
726 B
Python
35 lines
726 B
Python
include_rules = [
|
|
"+call",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+modules/async_audio_processing",
|
|
"+modules/audio_coding",
|
|
"+modules/audio_device",
|
|
"+modules/audio_mixer",
|
|
"+modules/audio_processing",
|
|
"+modules/rtp_rtcp",
|
|
"+modules/video_capture",
|
|
"+modules/video_coding",
|
|
"+modules/video_coding/utility",
|
|
"+net/dcsctp",
|
|
"+p2p",
|
|
"+sound",
|
|
"+system_wrappers",
|
|
"+third_party/libyuv",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"win32devicemanager\.cc": [
|
|
"+third_party/logitech/files/logitechquickcam.h",
|
|
],
|
|
".*webrtc_video_engine\.h": [
|
|
"+video/config",
|
|
],
|
|
".*webrtc_video_engine_unittest\.cc": [
|
|
"+video/config",
|
|
],
|
|
".*fake_webrtc_call\.cc": [
|
|
"+video/config",
|
|
],
|
|
}
|