Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(989)

Unified Diff: webrtc/tools/BUILD.gn

Issue 2540893003: Proof of concept using libvpx's y4minput.c (Closed)
Patch Set: Using y4minput.c Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/tools/BUILD.gn
diff --git a/webrtc/tools/BUILD.gn b/webrtc/tools/BUILD.gn
index 565a0a2d6651cde7d8216ac7a6dcfabb628b0538..2bfb1ddfc5ba6ddc0e2eaae23212b979afc126b5 100644
--- a/webrtc/tools/BUILD.gn
+++ b/webrtc/tools/BUILD.gn
@@ -87,6 +87,30 @@ rtc_executable("psnr_ssim_analyzer") {
]
}
+rtc_static_library("reference_less_video_analysis_lib") {
+ sources = [
+ "frame_analyzer/reference_less_video_analysis_lib.cc",
+ "frame_analyzer/reference_less_video_analysis_lib.h",
+ ]
+
+ deps = [
+ ":video_quality_analysis",
+ "../..:libvpx_y4minput",
+ ]
+}
+
+rtc_executable("reference_less_video_analysis") {
+ sources = [
+ "frame_analyzer/reference_less_video_analysis.cc",
+ ]
+
+ deps = [
+ ":command_line_parser",
+ ":reference_less_video_analysis_lib",
+ "//build/win:default_exe_manifest",
+ ]
+}
+
rtc_executable("rgba_to_i420_converter") {
sources = [
"converter/converter.cc",
@@ -254,6 +278,7 @@ if (rtc_include_tests) {
testonly = true
sources = [
+ "frame_analyzer/reference_less_video_analysis_unittest.cc",
"frame_analyzer/video_quality_analysis_unittest.cc",
"frame_editing/frame_editing_unittest.cc",
"simple_command_line_parser_unittest.cc",
@@ -270,6 +295,7 @@ if (rtc_include_tests) {
deps = [
":command_line_parser",
":frame_editing_lib",
+ ":reference_less_video_analysis_lib",
":video_quality_analysis",
"../test:test_support_main",
"//testing/gtest",

Powered by Google App Engine
This is Rietveld 408576698