using
find test -name "*.h" -o -name "*.cc" | xargs tools_webrtc/iwyu/apply_include_cleaner.py
followed by
git cl format
and
tools_webrtc/gn_check_autofix.py -C out/Default
followed by running clang-tidy with
tools/clang/scripts/build_clang_tools_extra.py \
--fetch out/Default clang-tidy clang-apply-replacements
ninja -C out/Default
gn gen out/Default --export-compile-commands
cd out/Default
tools/clang/third_party/llvm/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py -p . \
-clang-tidy-binary out/Default/tools/clang/third_party/llvm/build/bin/clang-tidy \
-clang-apply-replacements-binary \
out/Default/tools/clang/third_party/llvm/build/bin/clang-apply-replacements \
-checks='-*,modernize-deprecated-headers' \
-fix
to move from C style standard headers to C++ style variants followed
another round of IWYU (which brought back stdio.h), format and gn_check_autofix.
This was followed by a manual pass removing C style headers from C++ headers when the corresponding C++-style header was in included in the .cc file. IWYU after thought brought some instances of stdio.h back *again*.
Bug: webrtc:42226242
Change-Id: I3ec5ee4bd3d4f81e25f5dfca3764bb85c2cad99b
No-Iwyu: false positive of jpeg include
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/396321
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Philipp Hancke <phancke@meta.com>
Cr-Commit-Position: refs/heads/main@{#44937}
143 lines
5.3 KiB
C++
143 lines
5.3 KiB
C++
/*
|
|
* Copyright (c) 2023 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "test/create_frame_generator_capturer.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "absl/strings/match.h"
|
|
#include "api/task_queue/task_queue_factory.h"
|
|
#include "api/test/create_frame_generator.h"
|
|
#include "api/test/frame_generator_interface.h"
|
|
#include "api/units/time_delta.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "system_wrappers/include/clock.h"
|
|
#include "test/frame_generator_capturer.h"
|
|
#include "test/testsupport/file_utils.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
namespace {
|
|
|
|
std::string TransformFilePath(std::string path) {
|
|
static const std::string resource_prefix = "res://";
|
|
int ext_pos = path.rfind('.');
|
|
if (ext_pos < 0) {
|
|
return test::ResourcePath(path, "yuv");
|
|
} else if (absl::StartsWith(path, resource_prefix)) {
|
|
std::string name = path.substr(resource_prefix.length(), ext_pos);
|
|
std::string ext = path.substr(ext_pos, path.size());
|
|
return test::ResourcePath(name, ext);
|
|
}
|
|
return path;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
std::unique_ptr<FrameGeneratorCapturer> CreateFrameGeneratorCapturer(
|
|
Clock* clock,
|
|
TaskQueueFactory& task_queue_factory,
|
|
FrameGeneratorCapturerConfig::SquaresVideo config,
|
|
bool allow_zero_hertz) {
|
|
return std::make_unique<FrameGeneratorCapturer>(
|
|
clock,
|
|
CreateSquareFrameGenerator(config.width, config.height,
|
|
config.pixel_format, config.num_squares),
|
|
config.framerate, task_queue_factory, allow_zero_hertz);
|
|
}
|
|
std::unique_ptr<FrameGeneratorCapturer> CreateFrameGeneratorCapturer(
|
|
Clock* clock,
|
|
TaskQueueFactory& task_queue_factory,
|
|
FrameGeneratorCapturerConfig::SquareSlides config,
|
|
bool allow_zero_hertz) {
|
|
return std::make_unique<FrameGeneratorCapturer>(
|
|
clock,
|
|
CreateSlideFrameGenerator(
|
|
config.width, config.height,
|
|
/*frame_repeat_count*/ config.change_interval.seconds<double>() *
|
|
config.framerate),
|
|
config.framerate, task_queue_factory, allow_zero_hertz);
|
|
}
|
|
std::unique_ptr<FrameGeneratorCapturer> CreateFrameGeneratorCapturer(
|
|
Clock* clock,
|
|
TaskQueueFactory& task_queue_factory,
|
|
FrameGeneratorCapturerConfig::VideoFile config,
|
|
bool allow_zero_hertz) {
|
|
RTC_CHECK(config.width && config.height);
|
|
return std::make_unique<FrameGeneratorCapturer>(
|
|
clock,
|
|
CreateFromYuvFileFrameGenerator({TransformFilePath(config.name)},
|
|
config.width, config.height,
|
|
/*frame_repeat_count*/ 1),
|
|
config.framerate, task_queue_factory, allow_zero_hertz);
|
|
}
|
|
|
|
std::unique_ptr<FrameGeneratorCapturer> CreateFrameGeneratorCapturer(
|
|
Clock* clock,
|
|
TaskQueueFactory& task_queue_factory,
|
|
FrameGeneratorCapturerConfig::ImageSlides config,
|
|
bool allow_zero_hertz) {
|
|
std::unique_ptr<FrameGeneratorInterface> slides_generator;
|
|
std::vector<std::string> paths = config.paths;
|
|
for (std::string& path : paths)
|
|
path = TransformFilePath(path);
|
|
|
|
if (config.crop.width || config.crop.height) {
|
|
TimeDelta pause_duration =
|
|
config.change_interval - config.crop.scroll_duration;
|
|
RTC_CHECK_GE(pause_duration, TimeDelta::Zero());
|
|
int crop_width = config.crop.width.value_or(config.width);
|
|
int crop_height = config.crop.height.value_or(config.height);
|
|
RTC_CHECK_LE(crop_width, config.width);
|
|
RTC_CHECK_LE(crop_height, config.height);
|
|
slides_generator = CreateScrollingInputFromYuvFilesFrameGenerator(
|
|
clock, paths, config.width, config.height, crop_width, crop_height,
|
|
config.crop.scroll_duration.ms(), pause_duration.ms());
|
|
} else {
|
|
slides_generator = CreateFromYuvFileFrameGenerator(
|
|
paths, config.width, config.height,
|
|
/*frame_repeat_count*/ config.change_interval.seconds<double>() *
|
|
config.framerate);
|
|
}
|
|
return std::make_unique<FrameGeneratorCapturer>(
|
|
clock, std::move(slides_generator), config.framerate, task_queue_factory,
|
|
allow_zero_hertz);
|
|
}
|
|
|
|
std::unique_ptr<FrameGeneratorCapturer> CreateFrameGeneratorCapturer(
|
|
Clock* clock,
|
|
TaskQueueFactory& task_queue_factory,
|
|
const FrameGeneratorCapturerConfig& config) {
|
|
if (config.video_file) {
|
|
return CreateFrameGeneratorCapturer(
|
|
clock, task_queue_factory, *config.video_file, config.allow_zero_hertz);
|
|
} else if (config.image_slides) {
|
|
return CreateFrameGeneratorCapturer(clock, task_queue_factory,
|
|
*config.image_slides,
|
|
config.allow_zero_hertz);
|
|
} else if (config.squares_slides) {
|
|
return CreateFrameGeneratorCapturer(clock, task_queue_factory,
|
|
*config.squares_slides,
|
|
config.allow_zero_hertz);
|
|
} else {
|
|
return CreateFrameGeneratorCapturer(
|
|
clock, task_queue_factory,
|
|
config.squares_video.value_or(
|
|
FrameGeneratorCapturerConfig::SquaresVideo()),
|
|
config.allow_zero_hertz);
|
|
}
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|