Jonas Oreland 6c2dae21e9 Move VideoEncoderConfig from api/ into video/config
This cl move VideoEncoderConfig from api/ to video/config.

VideoStreamEncoderInterface and VideoStreamEncoderObserver
are moved as collateral.

brandt@ think that the reason these were in api/ in the
first place had to downstream project.

Functionality wise, this is a NOP, but it makes it easier
to modify the encoder (config).

Bug: webrtc:14451
Change-Id: I2610d815aeb186298498e7102cac773ecac8cd36
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/277002
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Commit-Queue: Jonas Oreland <jonaso@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38242}
2022-09-29 09:44:43 +00:00

38 lines
778 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",
],
".*media_channel\.h": [
"+video/config",
],
".*webrtc_video_engine_unittest\.cc": [
"+video/config",
],
".*fake_webrtc_call\.cc": [
"+video/config",
],
}