Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1179)

Unified Diff: media/mojo/common/media_type_converters_unittest.cc

Issue 2908303003: media: Create Mojo StructTraits for VideoFrame (Closed)
Patch Set: Remove death test. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/mojo/common/media_type_converters_unittest.cc
diff --git a/media/mojo/common/media_type_converters_unittest.cc b/media/mojo/common/media_type_converters_unittest.cc
index 54aa371789b3e5f19b000bdb80bd45181644f093..7ba0fa501f2b6a6be6987eb7f96c3488a9792d8c 100644
--- a/media/mojo/common/media_type_converters_unittest.cc
+++ b/media/mojo/common/media_type_converters_unittest.cc
@@ -18,8 +18,6 @@
#include "media/base/media_util.h"
#include "media/base/sample_format.h"
#include "media/base/test_helpers.h"
-#include "media/base/video_frame.h"
-#include "media/mojo/common/mojo_shared_buffer_video_frame.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
@@ -35,24 +33,6 @@ void CompareBytes(uint8_t* original_data, uint8_t* result_data, size_t length) {
EXPECT_EQ(memcmp(original_data, result_data, length), 0);
}
-// Compare the actual video frame bytes (|rows| rows of |row|bytes| data),
-// skipping any padding that may be in either frame.
-void CompareRowBytes(uint8_t* original_data,
- uint8_t* result_data,
- size_t rows,
- size_t row_bytes,
- size_t original_stride,
- size_t result_stride) {
- DCHECK_GE(original_stride, row_bytes);
- DCHECK_GE(result_stride, row_bytes);
-
- for (size_t i = 0; i < rows; ++i) {
- CompareBytes(original_data, result_data, row_bytes);
- original_data += original_stride;
- result_data += result_stride;
- }
-}
-
void CompareAudioBuffers(SampleFormat sample_format,
const scoped_refptr<AudioBuffer>& original,
const scoped_refptr<AudioBuffer>& result) {
@@ -80,96 +60,6 @@ void CompareAudioBuffers(SampleFormat sample_format,
bytes_per_channel * original->channel_count());
}
-void CompareVideoPlane(size_t plane,
- const scoped_refptr<VideoFrame>& original,
- const scoped_refptr<VideoFrame>& result) {
- EXPECT_EQ(original->stride(plane), result->stride(plane));
- EXPECT_EQ(original->row_bytes(plane), result->row_bytes(plane));
- EXPECT_EQ(original->rows(plane), result->rows(plane));
- CompareRowBytes(original->data(plane), result->data(plane),
- original->rows(plane), original->row_bytes(plane),
- original->stride(plane), result->stride(plane));
-}
-
-void CompareVideoFrames(const scoped_refptr<VideoFrame>& original,
- const scoped_refptr<VideoFrame>& result) {
- if (original->metadata()->IsTrue(VideoFrameMetadata::END_OF_STREAM)) {
- EXPECT_TRUE(result->metadata()->IsTrue(VideoFrameMetadata::END_OF_STREAM));
- return;
- }
-
- EXPECT_EQ(original->format(), result->format());
- EXPECT_EQ(original->coded_size().height(), result->coded_size().height());
- EXPECT_EQ(original->coded_size().width(), result->coded_size().width());
- EXPECT_EQ(original->visible_rect().height(), result->visible_rect().height());
- EXPECT_EQ(original->visible_rect().width(), result->visible_rect().width());
- EXPECT_EQ(original->natural_size().height(), result->natural_size().height());
- EXPECT_EQ(original->natural_size().width(), result->natural_size().width());
-
- CompareVideoPlane(VideoFrame::kYPlane, original, result);
- CompareVideoPlane(VideoFrame::kUPlane, original, result);
- CompareVideoPlane(VideoFrame::kVPlane, original, result);
-}
-
-// Returns a color VideoFrame that stores the data in a
-// mojo::SharedBufferHandle.
-scoped_refptr<VideoFrame> CreateMojoSharedBufferColorFrame() {
- // Create a color VideoFrame to use as reference (data will need to be copied
- // to a mojo::SharedBufferHandle).
- const int kWidth = 16;
- const int kHeight = 9;
- const base::TimeDelta kTimestamp = base::TimeDelta::FromSeconds(26);
- scoped_refptr<VideoFrame> color_frame(VideoFrame::CreateColorFrame(
- gfx::Size(kWidth, kHeight), 255, 128, 24, kTimestamp));
-
- // Allocate a mojo::SharedBufferHandle big enough to contain
- // |color_frame|'s data.
- const size_t allocation_size = VideoFrame::AllocationSize(
- color_frame->format(), color_frame->coded_size());
- mojo::ScopedSharedBufferHandle handle =
- mojo::SharedBufferHandle::Create(allocation_size);
- EXPECT_TRUE(handle.is_valid());
-
- // Create a MojoSharedBufferVideoFrame whose dimensions match |color_frame|.
- const size_t y_plane_size = color_frame->rows(VideoFrame::kYPlane) *
- color_frame->stride(VideoFrame::kYPlane);
- const size_t u_plane_size = color_frame->rows(VideoFrame::kUPlane) *
- color_frame->stride(VideoFrame::kUPlane);
- const size_t v_plane_size = color_frame->rows(VideoFrame::kVPlane) *
- color_frame->stride(VideoFrame::kVPlane);
- scoped_refptr<VideoFrame> frame(MojoSharedBufferVideoFrame::Create(
- color_frame->format(), color_frame->coded_size(),
- color_frame->visible_rect(), color_frame->natural_size(),
- std::move(handle), allocation_size, 0, y_plane_size,
- y_plane_size + u_plane_size, color_frame->stride(VideoFrame::kYPlane),
- color_frame->stride(VideoFrame::kUPlane),
- color_frame->stride(VideoFrame::kVPlane), color_frame->timestamp()));
- EXPECT_EQ(color_frame->coded_size(), frame->coded_size());
- EXPECT_EQ(color_frame->visible_rect(), frame->visible_rect());
- EXPECT_EQ(color_frame->natural_size(), frame->natural_size());
- EXPECT_EQ(color_frame->rows(VideoFrame::kYPlane),
- frame->rows(VideoFrame::kYPlane));
- EXPECT_EQ(color_frame->rows(VideoFrame::kUPlane),
- frame->rows(VideoFrame::kUPlane));
- EXPECT_EQ(color_frame->rows(VideoFrame::kVPlane),
- frame->rows(VideoFrame::kVPlane));
- EXPECT_EQ(color_frame->stride(VideoFrame::kYPlane),
- frame->stride(VideoFrame::kYPlane));
- EXPECT_EQ(color_frame->stride(VideoFrame::kUPlane),
- frame->stride(VideoFrame::kUPlane));
- EXPECT_EQ(color_frame->stride(VideoFrame::kVPlane),
- frame->stride(VideoFrame::kVPlane));
-
- // Copy all the data from |color_frame| into |frame|.
- memcpy(frame->data(VideoFrame::kYPlane),
- color_frame->data(VideoFrame::kYPlane), y_plane_size);
- memcpy(frame->data(VideoFrame::kUPlane),
- color_frame->data(VideoFrame::kUPlane), u_plane_size);
- memcpy(frame->data(VideoFrame::kVPlane),
- color_frame->data(VideoFrame::kVPlane), v_plane_size);
- return frame;
-}
-
} // namespace
TEST(MediaTypeConvertersTest, ConvertDecoderBuffer_Normal) {
@@ -444,44 +334,6 @@ TEST(MediaTypeConvertersTest, ConvertAudioBuffer_FLOAT) {
CompareAudioBuffers(kSampleFormatPlanarF32, buffer, result);
}
-TEST(MediaTypeConvertersTest, ConvertVideoFrame_EOS) {
- // Original.
- scoped_refptr<VideoFrame> buffer(VideoFrame::CreateEOSFrame());
-
- // Convert to and back.
- mojom::VideoFramePtr ptr(mojom::VideoFrame::From(buffer));
- scoped_refptr<VideoFrame> result(ptr.To<scoped_refptr<VideoFrame>>());
-
- // Compare.
- CompareVideoFrames(buffer, result);
-}
-
-TEST(MediaTypeConvertersTest, ConvertVideoFrame_EmptyFrame) {
- // Original.
- scoped_refptr<VideoFrame> frame(MojoSharedBufferVideoFrame::CreateDefaultI420(
- gfx::Size(100, 100), base::TimeDelta::FromSeconds(100)));
-
- // Convert to and back.
- mojom::VideoFramePtr ptr(mojom::VideoFrame::From(frame));
- scoped_refptr<VideoFrame> result(ptr.To<scoped_refptr<VideoFrame>>());
- EXPECT_NE(result.get(), nullptr);
-
- // Compare.
- CompareVideoFrames(frame, result);
-}
-
-TEST(MediaTypeConvertersTest, ConvertVideoFrame_ColorFrame) {
- scoped_refptr<VideoFrame> frame(CreateMojoSharedBufferColorFrame());
-
- // Convert to and back.
- mojom::VideoFramePtr ptr(mojom::VideoFrame::From(frame));
- scoped_refptr<VideoFrame> result(ptr.To<scoped_refptr<VideoFrame>>());
- EXPECT_NE(result.get(), nullptr);
-
- // Compare.
- CompareVideoFrames(frame, result);
-}
-
TEST(MediaTypeConvertersTest, ConvertEncryptionSchemeAesCbcWithPattern) {
// Original.
EncryptionScheme scheme(EncryptionScheme::CIPHER_MODE_AES_CBC,

Powered by Google App Engine
This is Rietveld 408576698