OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/resources/video_resource_updater.h" | 5 #include "cc/resources/video_resource_updater.h" |
6 | 6 |
7 #include "base/memory/shared_memory.h" | 7 #include "base/memory/shared_memory.h" |
8 #include "cc/resources/resource_provider.h" | 8 #include "cc/resources/resource_provider.h" |
9 #include "cc/test/fake_output_surface.h" | 9 #include "cc/test/fake_output_surface.h" |
10 #include "cc/test/fake_output_surface_client.h" | 10 #include "cc/test/fake_output_surface_client.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 VideoResourceUpdaterTest() { | 21 VideoResourceUpdaterTest() { |
22 scoped_ptr<TestWebGraphicsContext3D> context3d = | 22 scoped_ptr<TestWebGraphicsContext3D> context3d = |
23 TestWebGraphicsContext3D::Create(); | 23 TestWebGraphicsContext3D::Create(); |
24 context3d_ = context3d.get(); | 24 context3d_ = context3d.get(); |
25 | 25 |
26 output_surface3d_ = | 26 output_surface3d_ = |
27 FakeOutputSurface::Create3d(context3d.Pass()); | 27 FakeOutputSurface::Create3d(context3d.Pass()); |
28 CHECK(output_surface3d_->BindToClient(&client_)); | 28 CHECK(output_surface3d_->BindToClient(&client_)); |
29 shared_bitmap_manager_.reset(new TestSharedBitmapManager()); | 29 shared_bitmap_manager_.reset(new TestSharedBitmapManager()); |
30 resource_provider3d_ = ResourceProvider::Create( | 30 resource_provider3d_ = ResourceProvider::Create( |
31 output_surface3d_.get(), shared_bitmap_manager_.get(), 0, false, 1); | 31 output_surface3d_.get(), shared_bitmap_manager_.get(), 0, false, 1, |
| 32 false); |
32 } | 33 } |
33 | 34 |
34 scoped_refptr<media::VideoFrame> CreateTestYUVVideoFrame() { | 35 scoped_refptr<media::VideoFrame> CreateTestYUVVideoFrame() { |
35 const int kDimension = 10; | 36 const int kDimension = 10; |
36 gfx::Size size(kDimension, kDimension); | 37 gfx::Size size(kDimension, kDimension); |
37 static uint8 y_data[kDimension * kDimension] = { 0 }; | 38 static uint8 y_data[kDimension * kDimension] = { 0 }; |
38 static uint8 u_data[kDimension * kDimension / 2] = { 0 }; | 39 static uint8 u_data[kDimension * kDimension / 2] = { 0 }; |
39 static uint8 v_data[kDimension * kDimension / 2] = { 0 }; | 40 static uint8 v_data[kDimension * kDimension / 2] = { 0 }; |
40 | 41 |
41 return media::VideoFrame::WrapExternalYuvData( | 42 return media::VideoFrame::WrapExternalYuvData( |
(...skipping 23 matching lines...) Expand all Loading... |
65 resource_provider3d_.get()); | 66 resource_provider3d_.get()); |
66 scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame(); | 67 scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame(); |
67 | 68 |
68 VideoFrameExternalResources resources = | 69 VideoFrameExternalResources resources = |
69 updater.CreateExternalResourcesFromVideoFrame(video_frame); | 70 updater.CreateExternalResourcesFromVideoFrame(video_frame); |
70 EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type); | 71 EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type); |
71 } | 72 } |
72 | 73 |
73 } // namespace | 74 } // namespace |
74 } // namespace cc | 75 } // namespace cc |
OLD | NEW |