From 5a3732cc8c16e77f3ad4e7c9bdea78a730fbda63 Mon Sep 17 00:00:00 2001 From: Magnus Jedvert Date: Thu, 2 Jun 2022 13:04:02 +0000 Subject: [PATCH] Disable tests depending on libyuv upscale filtering Bug: NONE Change-Id: I6e8147428b3dba3849a9835d2686083e8aec6d6b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/264828 Commit-Queue: Magnus Jedvert Reviewed-by: Mirko Bonadei Cr-Commit-Position: refs/heads/main@{#37097} --- rtc_tools/frame_analyzer/video_geometry_aligner_unittest.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rtc_tools/frame_analyzer/video_geometry_aligner_unittest.cc b/rtc_tools/frame_analyzer/video_geometry_aligner_unittest.cc index 6b0904a8e1..a86b8c5f4c 100644 --- a/rtc_tools/frame_analyzer/video_geometry_aligner_unittest.cc +++ b/rtc_tools/frame_analyzer/video_geometry_aligner_unittest.cc @@ -74,7 +74,8 @@ TEST_F(VideoGeometryAlignerTest, CropAndZoomLeft) { std::vector(cropped_frame->DataV(), cropped_frame->DataV() + 4)); } -TEST_F(VideoGeometryAlignerTest, CropAndZoomTop) { +// TODO(magjed): Re-enable when libyuv filtering is updated. +TEST_F(VideoGeometryAlignerTest, DISABLED_CropAndZoomTop) { CropRegion region; region.top = 2; const rtc::scoped_refptr cropped_frame = @@ -108,7 +109,8 @@ TEST_F(VideoGeometryAlignerTest, CropAndZoomRight) { std::vector(cropped_frame->DataV(), cropped_frame->DataV() + 4)); } -TEST_F(VideoGeometryAlignerTest, CropAndZoomBottom) { +// TODO(magjed): Re-enable when libyuv filtering is updated. +TEST_F(VideoGeometryAlignerTest, DISABLED_CropAndZoomBottom) { CropRegion region; region.bottom = 2; const rtc::scoped_refptr cropped_frame =