mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
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:
parent
4f7486ab3b
commit
5a3732cc8c
1 changed files with 4 additions and 2 deletions
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue