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

Unified Diff: media/base/video_frame_unittest.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 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
« no previous file with comments | « media/base/video_frame.cc ('k') | remoting/base/protocol/chromotocol.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_frame_unittest.cc
diff --git a/media/base/video_frame_unittest.cc b/media/base/video_frame_unittest.cc
index caa567575d02cbd861a1f8b8acb4f96cad3cd136..1cacdd1a3ae84f8ec4dee44fd1021667aa8c6471 100644
--- a/media/base/video_frame_unittest.cc
+++ b/media/base/video_frame_unittest.cc
@@ -195,4 +195,24 @@ TEST(VideoFrame, CreatePrivateFrame) {
EXPECT_EQ(NULL, frame->data(VideoFrame::kYPlane));
}
+TEST(VideoFram, CreateExternalFrame) {
+ scoped_array<uint8> memory(new uint8[1]);
+
+ scoped_refptr<media::VideoFrame> frame;
+ uint8* data[3] = {memory.get(), NULL, NULL};
+ int strides[3] = {1, 0, 0};
+ VideoFrame::CreateFrameExternal(media::VideoFrame::RGB32, 0, 0,
+ data, strides,
+ base::TimeDelta(), base::TimeDelta(), &frame);
+ ASSERT_TRUE(frame);
+
+ // Test frame properties.
+ EXPECT_EQ(1, frame->stride(VideoFrame::kRGBPlane));
+ EXPECT_EQ(memory.get(), frame->data(VideoFrame::kRGBPlane));
+
+ // Delete |memory| and then |frame|.
+ memory.reset();
+ frame = NULL;
+}
+
} // namespace media
« no previous file with comments | « media/base/video_frame.cc ('k') | remoting/base/protocol/chromotocol.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698