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}
This commit is contained in:
Magnus Jedvert 2022-06-02 13:04:02 +00:00 committed by WebRTC LUCI CQ
parent 4f7486ab3b
commit 5a3732cc8c

View file

@ -74,7 +74,8 @@ TEST_F(VideoGeometryAlignerTest, CropAndZoomLeft) {
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 @@ TEST_F(VideoGeometryAlignerTest, CropAndZoomRight) {
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 =