mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 14:50:39 +01:00

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}
25 lines
433 B
Python
25 lines
433 B
Python
include_rules = [
|
|
"+vpx",
|
|
"+call",
|
|
"+common_video",
|
|
"+sdk",
|
|
"+system_wrappers",
|
|
"+rtc_tools",
|
|
"+third_party/libyuv",
|
|
"+rtc_base/system/rtc_export.h",
|
|
"+video/config",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"android_codec_factory_helper\.cc": [
|
|
"+base/android",
|
|
],
|
|
"multiplex_encoder_adapter\.cc": [
|
|
"+media/base",
|
|
],
|
|
".*test.*\.cc": [
|
|
"+media/base",
|
|
"+media/engine",
|
|
"+video/config",
|
|
],
|
|
}
|