2016-03-17 12:05:36 +01:00
|
|
|
include_rules = [
|
2017-09-15 06:47:31 +02:00
|
|
|
"+call",
|
2018-11-28 16:47:49 +01:00
|
|
|
"+common_audio",
|
2017-09-15 06:47:31 +02:00
|
|
|
"+common_video",
|
|
|
|
|
"+logging/rtc_event_log",
|
2019-02-01 10:00:05 -08:00
|
|
|
"+media",
|
2017-09-15 06:47:31 +02:00
|
|
|
"+modules/audio_device",
|
|
|
|
|
"+modules/audio_coding/audio_network_adaptor",
|
2018-11-28 16:47:49 +01:00
|
|
|
"+modules/audio_coding/neteq/include",
|
2017-09-15 06:47:31 +02:00
|
|
|
"+modules/audio_coding/neteq/tools",
|
|
|
|
|
"+modules/audio_processing",
|
|
|
|
|
"+modules/bitrate_controller",
|
2018-10-15 18:46:51 +02:00
|
|
|
"+modules/remote_bitrate_estimator",
|
2017-09-15 06:47:31 +02:00
|
|
|
"+modules/congestion_controller",
|
|
|
|
|
"+modules/pacing",
|
|
|
|
|
"+modules/rtp_rtcp",
|
|
|
|
|
"+system_wrappers",
|
|
|
|
|
"+p2p",
|
2017-12-11 09:32:13 +01:00
|
|
|
"+third_party/libyuv",
|
2022-09-27 16:53:04 +02:00
|
|
|
"+video/config",
|
2016-03-17 12:05:36 +01:00
|
|
|
]
|
|
|
|
|
|
2020-02-19 15:03:45 +01:00
|
|
|
specific_include_rules = {
|
|
|
|
|
".*ivf_converter\.cc": [
|
|
|
|
|
"+absl/debugging/failure_signal_handler.h",
|
|
|
|
|
"+absl/debugging/symbolize.h",
|
|
|
|
|
"+modules/video_coding/codecs/vp8/include/vp8.h",
|
|
|
|
|
"+modules/video_coding/codecs/vp9/include/vp9.h",
|
|
|
|
|
"+modules/video_coding/include/video_error_codes.h",
|
|
|
|
|
"+modules/video_coding/utility/ivf_file_writer.h",
|
|
|
|
|
"+modules/video_coding/codecs/h264/include/h264.h",
|
|
|
|
|
],
|
2021-01-26 18:05:56 +01:00
|
|
|
".*video_replay\.cc": [
|
|
|
|
|
"+modules/video_coding/utility/ivf_file_writer.h",
|
2024-03-04 11:48:58 +01:00
|
|
|
"+absl/strings/str_split.h",
|
2021-01-26 18:05:56 +01:00
|
|
|
],
|
[rct_tools/video_encoder] Add video encoder tool
This CL adds a new video encode tool that supports to encode video at
specified codec, scalability mode, resolution, frame rate, bitrate,
key frame interval and the number of encoding frames.
The video encoder accepts video frames from `FrameGeneratorInterface`,
and supports `SquareFrameGenerator`, `SlideFrameGenerator` and
`IvfFileFrameGenerator`.
All the encoded bitstreams are wrote into ivf output files.
The purposes of this video encoder tool are:
1. Check the functionalities of video codecs and scalability modes.
2. Optimize video quality at different encode setting.
3. Fine tune the bitrate controller.
4. Compare the quality of different codecs at the same setting.
5. And more.
TESTS: Run the tool at 1280x720, 30fps, 2000kbps, 100 GOP, 300 frames:
vp8 [L1T1 L1T3]
h264 [L1T1 L1T3]
vp9 [L1T1 L1T3 L3T3_KEY]
av1 [L1T1 L1T3 L3T3_KEY]
Bug: webrtc:15210
Change-Id: I3b0e463cf3236cd9a481fbab5688643c203958da
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/307361
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Henrik Boström <hbos@webrtc.org>
Reviewed-by: Sergey Silkin <ssilkin@webrtc.org>
Commit-Queue: Jianhui J Dai <jianhui.j.dai@intel.com>
Reviewed-by: Erik Språng <sprang@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#40267}
2023-06-12 19:36:03 +08:00
|
|
|
".*video_encoder\.cc": [
|
|
|
|
|
"+modules/video_coding/codecs/av1/av1_svc_config.h",
|
|
|
|
|
"+modules/video_coding/include/video_codec_interface.h",
|
|
|
|
|
"+modules/video_coding/svc/scalability_mode_util.h",
|
2023-06-19 09:36:42 +08:00
|
|
|
],
|
|
|
|
|
".*encoded_image_file_writer\.(cc|h)": [
|
|
|
|
|
"+modules/video_coding/include/video_codec_interface.h",
|
|
|
|
|
"+modules/video_coding/svc/scalability_mode_util.h",
|
[rct_tools/video_encoder] Add video encoder tool
This CL adds a new video encode tool that supports to encode video at
specified codec, scalability mode, resolution, frame rate, bitrate,
key frame interval and the number of encoding frames.
The video encoder accepts video frames from `FrameGeneratorInterface`,
and supports `SquareFrameGenerator`, `SlideFrameGenerator` and
`IvfFileFrameGenerator`.
All the encoded bitstreams are wrote into ivf output files.
The purposes of this video encoder tool are:
1. Check the functionalities of video codecs and scalability modes.
2. Optimize video quality at different encode setting.
3. Fine tune the bitrate controller.
4. Compare the quality of different codecs at the same setting.
5. And more.
TESTS: Run the tool at 1280x720, 30fps, 2000kbps, 100 GOP, 300 frames:
vp8 [L1T1 L1T3]
h264 [L1T1 L1T3]
vp9 [L1T1 L1T3 L3T3_KEY]
av1 [L1T1 L1T3 L3T3_KEY]
Bug: webrtc:15210
Change-Id: I3b0e463cf3236cd9a481fbab5688643c203958da
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/307361
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Henrik Boström <hbos@webrtc.org>
Reviewed-by: Sergey Silkin <ssilkin@webrtc.org>
Commit-Queue: Jianhui J Dai <jianhui.j.dai@intel.com>
Reviewed-by: Erik Språng <sprang@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#40267}
2023-06-12 19:36:03 +08:00
|
|
|
"+modules/video_coding/utility/ivf_file_writer.h",
|
|
|
|
|
],
|
2020-02-19 15:03:45 +01:00
|
|
|
}
|