Index: webrtc/media/engine/webrtcvideoframe_unittest.cc |
diff --git a/webrtc/media/engine/webrtcvideoframe_unittest.cc b/webrtc/media/engine/webrtcvideoframe_unittest.cc |
deleted file mode 100644 |
index 2385e44ab2dd1e2b7827d9bf6f4c721120030152..0000000000000000000000000000000000000000 |
--- a/webrtc/media/engine/webrtcvideoframe_unittest.cc |
+++ /dev/null |
@@ -1,157 +0,0 @@ |
-/* |
- * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
- * |
- * Use of this source code is governed by a BSD-style license |
- * that can be found in the LICENSE file in the root of the source |
- * tree. An additional intellectual property rights grant can be found |
- * in the file PATENTS. All contributing project authors may |
- * be found in the AUTHORS file in the root of the source tree. |
- */ |
- |
-#include <string.h> |
- |
-#include <memory> |
- |
-#include "webrtc/media/base/videoframe_unittest.h" |
-#include "webrtc/media/engine/webrtcvideoframe.h" |
-#include "webrtc/test/fake_texture_frame.h" |
- |
-namespace cricket { |
- |
-class WebRtcVideoFrameTest : public VideoFrameTest<WebRtcVideoFrame> { |
- public: |
- WebRtcVideoFrameTest() {} |
- |
- void SetFrameRotation(WebRtcVideoFrame* frame, |
- webrtc::VideoRotation rotation) { |
- frame->rotation_ = rotation; |
- } |
-}; |
- |
-#define TEST_WEBRTCVIDEOFRAME(X) \ |
- TEST_F(WebRtcVideoFrameTest, X) { VideoFrameTest<WebRtcVideoFrame>::X(); } |
- |
-TEST_WEBRTCVIDEOFRAME(ConstructI420) |
-TEST_WEBRTCVIDEOFRAME(ConstructI422) |
-TEST_WEBRTCVIDEOFRAME(ConstructYuy2) |
-TEST_WEBRTCVIDEOFRAME(ConstructYuy2Unaligned) |
-TEST_WEBRTCVIDEOFRAME(ConstructYuy2Wide) |
-TEST_WEBRTCVIDEOFRAME(ConstructYV12) |
-TEST_WEBRTCVIDEOFRAME(ConstructUyvy) |
-TEST_WEBRTCVIDEOFRAME(ConstructM420) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV21) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV12) |
-TEST_WEBRTCVIDEOFRAME(ConstructABGR) |
-TEST_WEBRTCVIDEOFRAME(ConstructARGB) |
-TEST_WEBRTCVIDEOFRAME(ConstructARGBWide) |
-TEST_WEBRTCVIDEOFRAME(ConstructBGRA) |
-TEST_WEBRTCVIDEOFRAME(Construct24BG) |
-TEST_WEBRTCVIDEOFRAME(ConstructRaw) |
- |
-TEST_WEBRTCVIDEOFRAME(ConstructI420Mirror) |
-TEST_WEBRTCVIDEOFRAME(ConstructI420Rotate0) |
-TEST_WEBRTCVIDEOFRAME(ConstructI420Rotate90) |
-TEST_WEBRTCVIDEOFRAME(ConstructI420Rotate180) |
-TEST_WEBRTCVIDEOFRAME(ConstructI420Rotate270) |
-TEST_WEBRTCVIDEOFRAME(ConstructYV12Rotate0) |
-TEST_WEBRTCVIDEOFRAME(ConstructYV12Rotate90) |
-TEST_WEBRTCVIDEOFRAME(ConstructYV12Rotate180) |
-TEST_WEBRTCVIDEOFRAME(ConstructYV12Rotate270) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV12Rotate0) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV12Rotate90) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV12Rotate180) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV12Rotate270) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV21Rotate0) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV21Rotate90) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV21Rotate180) |
-TEST_WEBRTCVIDEOFRAME(ConstructNV21Rotate270) |
-TEST_WEBRTCVIDEOFRAME(ConstructUYVYRotate0) |
-TEST_WEBRTCVIDEOFRAME(ConstructUYVYRotate90) |
-TEST_WEBRTCVIDEOFRAME(ConstructUYVYRotate180) |
-TEST_WEBRTCVIDEOFRAME(ConstructUYVYRotate270) |
-TEST_WEBRTCVIDEOFRAME(ConstructYUY2Rotate0) |
-TEST_WEBRTCVIDEOFRAME(ConstructYUY2Rotate90) |
-TEST_WEBRTCVIDEOFRAME(ConstructYUY2Rotate180) |
-TEST_WEBRTCVIDEOFRAME(ConstructYUY2Rotate270) |
-TEST_WEBRTCVIDEOFRAME(ConstructI4201Pixel) |
-TEST_WEBRTCVIDEOFRAME(ConstructI4205Pixel) |
-// TODO(juberti): WebRtcVideoFrame does not support horizontal crop. |
-// Re-evaluate once it supports 3 independent planes, since we might want to |
-// just Init normally and then crop by adjusting pointers. |
-// TEST_WEBRTCVIDEOFRAME(ConstructI420CropHorizontal) |
-TEST_WEBRTCVIDEOFRAME(ConstructI420CropVertical) |
-// TODO(juberti): WebRtcVideoFrame is not currently refcounted. |
-// TEST_WEBRTCVIDEOFRAME(ConstructCopy) |
-// TEST_WEBRTCVIDEOFRAME(ConstructCopyIsRef) |
-// TODO(fbarchard): Implement Jpeg |
-// TEST_WEBRTCVIDEOFRAME(ConstructMjpgI420) |
-TEST_WEBRTCVIDEOFRAME(ConstructMjpgI422) |
-// TEST_WEBRTCVIDEOFRAME(ConstructMjpgI444) |
-// TEST_WEBRTCVIDEOFRAME(ConstructMjpgI411) |
-// TEST_WEBRTCVIDEOFRAME(ConstructMjpgI400) |
-// TEST_WEBRTCVIDEOFRAME(ValidateMjpgI420) |
-// TEST_WEBRTCVIDEOFRAME(ValidateMjpgI422) |
-// TEST_WEBRTCVIDEOFRAME(ValidateMjpgI444) |
-// TEST_WEBRTCVIDEOFRAME(ValidateMjpgI411) |
-// TEST_WEBRTCVIDEOFRAME(ValidateMjpgI400) |
-TEST_WEBRTCVIDEOFRAME(ValidateI420) |
-TEST_WEBRTCVIDEOFRAME(ValidateI420SmallSize) |
-TEST_WEBRTCVIDEOFRAME(ValidateI420LargeSize) |
-TEST_WEBRTCVIDEOFRAME(ValidateI420HugeSize) |
-// TEST_WEBRTCVIDEOFRAME(ValidateMjpgI420InvalidSize) |
-// TEST_WEBRTCVIDEOFRAME(ValidateI420InvalidSize) |
- |
-// TODO(fbarchard): WebRtcVideoFrame does not support odd sizes. |
-// Re-evaluate once WebRTC switches to libyuv |
-// TEST_WEBRTCVIDEOFRAME(ConstructYuy2AllSizes) |
-// TEST_WEBRTCVIDEOFRAME(ConstructARGBAllSizes) |
-// TEST_WEBRTCVIDEOFRAME(ConvertToI422Buffer) |
-// TEST_WEBRTCVIDEOFRAME(ConstructARGBBlackWhitePixel) |
- |
-TEST_F(WebRtcVideoFrameTest, TextureInitialValues) { |
- webrtc::test::FakeNativeHandle* dummy_handle = |
- new webrtc::test::FakeNativeHandle(); |
- webrtc::NativeHandleBuffer* buffer = |
- new rtc::RefCountedObject<webrtc::test::FakeNativeHandleBuffer>( |
- dummy_handle, 640, 480); |
- |
- WebRtcVideoFrame frame(buffer, webrtc::kVideoRotation_0, 20); |
- EXPECT_EQ(dummy_handle, frame.video_frame_buffer()->native_handle()); |
- EXPECT_EQ(640, frame.width()); |
- EXPECT_EQ(480, frame.height()); |
- EXPECT_EQ(20, frame.timestamp_us()); |
- frame.set_timestamp_us(40); |
- EXPECT_EQ(40, frame.timestamp_us()); |
-} |
- |
-TEST_F(WebRtcVideoFrameTest, ApplyRotationToFrame) { |
- WebRtcVideoFrame applied0; |
- EXPECT_TRUE(IsNull(applied0)); |
- EXPECT_TRUE(LoadFrame(CreateYuvSample(kWidth, kHeight, 12).get(), FOURCC_I420, |
- kWidth, kHeight, &applied0)); |
- |
- // Claim that this frame needs to be rotated for 90 degree. |
- SetFrameRotation(&applied0, webrtc::kVideoRotation_90); |
- EXPECT_EQ(applied0.rotation(), webrtc::kVideoRotation_90); |
- |
- // Apply rotation on frame 1. Output should be different from frame 1. |
- WebRtcVideoFrame applied90( |
- webrtc::I420Buffer::Rotate(applied0.video_frame_buffer(), |
- applied0.rotation()), |
- webrtc::kVideoRotation_0, applied0.timestamp_us()); |
- |
- EXPECT_EQ(applied90.rotation(), webrtc::kVideoRotation_0); |
- EXPECT_FALSE(IsEqual(applied0, applied90, 0)); |
- |
- // Claim the frame 2 needs to be rotated for another 270 degree. The output |
- // from frame 2 rotation should be the same as frame 1. |
- SetFrameRotation(&applied90, webrtc::kVideoRotation_270); |
- WebRtcVideoFrame applied360( |
- webrtc::I420Buffer::Rotate(applied90.video_frame_buffer(), |
- applied90.rotation()), |
- webrtc::kVideoRotation_0, applied90.timestamp_us()); |
- EXPECT_EQ(applied360.rotation(), webrtc::kVideoRotation_0); |
- EXPECT_TRUE(IsEqual(applied0, applied360, 0)); |
-} |
- |
-} // namespace cricket |