Harald Alvestrand 19bbd6f02f Move some codec-comparing functions to a single file.
This CL is a pure move; later CLs will try to increase consistency
between the functions.

Bug: webrtc:360058654
Change-Id: I6662b3d35f8e2dab60c2778a4755454fe3029fe2
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/365100
Commit-Queue: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Florent Castelli <orphis@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#43210}
2024-10-09 22:10:36 +00:00

75 lines
1.7 KiB
Python

include_rules = [
"+audio",
"+logging/rtc_event_log",
"+modules/async_audio_processing",
"+modules/audio_coding",
"+modules/audio_device",
"+modules/audio_mixer",
"+modules/audio_processing",
"+modules/bitrate_controller",
"+modules/congestion_controller",
"+modules/video_coding",
"+modules/pacing",
"+modules/rtp_rtcp",
"+modules/utility",
"+system_wrappers",
"+video",
]
specific_include_rules = {
"video_receive_stream\.h": [
"+common_video/frame_counts.h",
],
"video_send_stream\.h": [
"+common_video",
],
"rtp_transport_controller_send_interface\.h": [
"+common_video/frame_counts.h",
],
"call_perf_tests\.cc": [
"+media/engine",
],
"simulated_network\.h": [
"+test/network/simulated_network.h",
],
"rtp_payload_params\.cc": [
"+common_video/generic_frame_descriptor",
],
"rtp_payload_params\.h": [
"+common_video/generic_frame_descriptor",
],
"rtp_payload_params_unittest\.cc": [
"+common_video/generic_frame_descriptor",
],
"rtp_video_sender\.cc": [
"+common_video/frame_counts.h",
"+common_video/generic_frame_descriptor",
],
"rtp_video_sender.h": [
"+common_video/frame_counts.h",
],
"rtp_video_sender_unittest.cc": [
"+common_video/frame_counts.h",
"+common_video/generic_frame_descriptor",
],
"payload_type\.h": [
"+media/base/codec.h",
],
"payload_type_picker\.h": [
"+media/base/codec.h",
"+media/base/media_constants.h",
],
"payload_type_picker\.cc": [
"+media/base/codec.h",
"+media/base/codec_comparators.h",
"+media/base/media_constants.h",
],
"payload_type_picker_unittest\.cc": [
"+media/base/codec.h",
"+media/base/media_constants.h",
],
"call\.cc": [
"+media/base/codec.h",
]
}