This reverts commit 7c5bc1cbd66d2436f80a1ddafbdc4fbff5389c6e. Reason for revert: Breaks downstream test that was relying on FrameGeneratorCapturer::Create Original change's description: > Reland "Add multiplex case to webrtc_perf_tests" > > This is a reland of d90a7e842437f5760a34bbfa283b3c4182963889 > > Original change's description: > > Add multiplex case to webrtc_perf_tests > > > > This CL adds two new tests to perf, covering I420 and I420A input to multiplex > > codec. In order to have the correct input, it adds I420A case to > > SquareGenerator and corresponding PSNR and SSIM calculations. > > > > Bug: webrtc:7671 > > Change-Id: I9735d725bbfba457e804e29907cee55406ae5c8d > > Reviewed-on: https://webrtc-review.googlesource.com/52180 > > Reviewed-by: Patrik Höglund <phoglund@webrtc.org> > > Reviewed-by: Niklas Enbom <niklas.enbom@webrtc.org> > > Reviewed-by: Erik Språng <sprang@webrtc.org> > > Commit-Queue: Emircan Uysaler <emircan@webrtc.org> > > Cr-Commit-Position: refs/heads/master@{#22330} > > Bug: webrtc:7671 > Change-Id: Iba2e89aee73a73a0372edea26933d6a7ea2e0ec9 > TBR: niklas.enbom@webrtc.org, phoglund@webrtc.org, sprang@webrtc.org > Reviewed-on: https://webrtc-review.googlesource.com/60600 > Reviewed-by: Emircan Uysaler <emircan@webrtc.org> > Commit-Queue: Emircan Uysaler <emircan@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#22336} TBR=phoglund@webrtc.org,sprang@webrtc.org,niklas.enbom@webrtc.org,qiangchen@chromium.org,emircan@webrtc.org Change-Id: I26d32f9fe8d97ea341aac15cbbd43ed89a0b5b9d No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:7671 Reviewed-on: https://webrtc-review.googlesource.com/60680 Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org> Commit-Queue: Taylor Brandstetter <deadbeef@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22337}
43 lines
1012 B
Python
43 lines
1012 B
Python
include_rules = [
|
|
"+third_party/libjpeg",
|
|
"+third_party/libjpeg_turbo",
|
|
"+call",
|
|
"+common_audio",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+media/base",
|
|
"+modules/audio_coding",
|
|
"+modules/audio_device",
|
|
"+modules/audio_mixer",
|
|
"+modules/audio_processing",
|
|
"+modules/rtp_rtcp",
|
|
"+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",
|
|
],
|
|
".*pseudotcp_parser_fuzzer\.cc": [
|
|
"+p2p/base/pseudotcp.h",
|
|
],
|
|
".*stun_parser_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
".*stun_validator_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
}
|