This reverts commit 482d26ce9d2b676ca277ca3f44a5d89105627cce. Reason for revert: Reduced amount of captured frames on some devices. Will require deeper look on it. Original change's description: > Enable capturing from camera in PC framework > > Bug: webrtc:10138 > Change-Id: I6b2eaddf4975ddc7237932511de06744ef962489 > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/154357 > Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> > Commit-Queue: Artem Titov <titovartem@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#29318} TBR=ilnik@webrtc.org,kwiberg@webrtc.org,titovartem@webrtc.org Change-Id: Ie9db3b1a13fa6ebfd8e277b68b5d808533a84620 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:10138 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/154560 Reviewed-by: Artem Titov <titovartem@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29320}
70 lines
1.6 KiB
Python
70 lines
1.6 KiB
Python
include_rules = [
|
|
"+third_party/libjpeg",
|
|
"+third_party/libjpeg_turbo",
|
|
"+call",
|
|
"+common_audio",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+media/base",
|
|
"+media/engine",
|
|
"+modules/audio_coding",
|
|
"+modules/congestion_controller",
|
|
"+modules/audio_device",
|
|
"+modules/audio_mixer",
|
|
"+modules/audio_processing",
|
|
"+modules/congestion_controller/bbr",
|
|
"+modules/rtp_rtcp",
|
|
"+modules/utility",
|
|
"+modules/video_capture",
|
|
"+modules/video_coding",
|
|
"+sdk",
|
|
"+system_wrappers",
|
|
"+third_party/libyuv",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"gmock\.h": [
|
|
"+testing/gmock/include/gmock",
|
|
],
|
|
"gtest\.h": [
|
|
"+testing/gtest/include/gtest",
|
|
],
|
|
".*congestion_controller_feedback_fuzzer\.cc": [
|
|
"+modules/congestion_controller/include/receive_side_congestion_controller.h",
|
|
"+modules/pacing/packet_router.h",
|
|
"+modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h",
|
|
],
|
|
".*mdns_parser_fuzzer\.cc": [
|
|
"+p2p/base/mdns_message.h",
|
|
],
|
|
".*pseudotcp_parser_fuzzer\.cc": [
|
|
"+p2p/base/pseudo_tcp.h",
|
|
],
|
|
".*stun_parser_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
".*stun_validator_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
".*test_main\.cc": [
|
|
"+absl/debugging/failure_signal_handler.h",
|
|
"+absl/debugging/symbolize.h",
|
|
],
|
|
".*test_peer\.(h|cc)": [
|
|
"+pc",
|
|
"+p2p",
|
|
],
|
|
".*network_emulation_pc_unittest\.cc": [
|
|
"+pc/peer_connection_wrapper.h",
|
|
"+pc/test/mock_peer_connection_observers.h",
|
|
"+p2p/client/basic_port_allocator.h",
|
|
],
|
|
".*peer_connection_quality_test\.(h|cc)": [
|
|
"+pc",
|
|
],
|
|
".*sdp_changer\.(h|cc)": [
|
|
"+pc",
|
|
"+p2p",
|
|
]
|
|
}
|