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 <magjed@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#37097}
diff --git a/rtc_tools/frame_analyzer/video_geometry_aligner_unittest.cc b/rtc_tools/frame_analyzer/video_geometry_aligner_unittest.cc
index 6b0904a..a86b8c5 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 @@
       std::vector<uint8_t>(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<I420BufferInterface> cropped_frame =
@@ -108,7 +109,8 @@
       std::vector<uint8_t>(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<I420BufferInterface> cropped_frame =