1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/resources/video_resource_updater.h"
#include "base/memory/shared_memory.h"
#include "cc/resources/resource_provider.h"
#include "cc/test/fake_output_surface.h"
#include "cc/test/fake_output_surface_client.h"
#include "cc/test/fake_resource_provider.h"
#include "cc/test/test_shared_bitmap_manager.h"
#include "cc/test/test_web_graphics_context_3d.h"
#include "cc/trees/blocking_task_runner.h"
#include "gpu/GLES2/gl2extchromium.h"
#include "media/base/video_frame.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace cc {
namespace {
class WebGraphicsContext3DUploadCounter : public TestWebGraphicsContext3D {
public:
void texSubImage2D(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
const void* pixels) override {
++upload_count_;
}
int UploadCount() { return upload_count_; }
void ResetUploadCount() { upload_count_ = 0; }
private:
int upload_count_;
};
class SharedBitmapManagerAllocationCounter : public TestSharedBitmapManager {
public:
scoped_ptr<SharedBitmap> AllocateSharedBitmap(
const gfx::Size& size) override {
++allocation_count_;
return TestSharedBitmapManager::AllocateSharedBitmap(size);
}
int AllocationCount() { return allocation_count_; }
void ResetAllocationCount() { allocation_count_ = 0; }
private:
int allocation_count_;
};
class VideoResourceUpdaterTest : public testing::Test {
protected:
VideoResourceUpdaterTest() {
scoped_ptr<WebGraphicsContext3DUploadCounter> context3d(
new WebGraphicsContext3DUploadCounter());
context3d_ = context3d.get();
output_surface3d_ =
FakeOutputSurface::Create3d(context3d.Pass());
CHECK(output_surface3d_->BindToClient(&client_));
output_surface_software_ = FakeOutputSurface::CreateSoftware(
make_scoped_ptr(new SoftwareOutputDevice));
CHECK(output_surface_software_->BindToClient(&client_));
shared_bitmap_manager_.reset(new SharedBitmapManagerAllocationCounter());
resource_provider3d_ = FakeResourceProvider::Create(
output_surface3d_.get(), shared_bitmap_manager_.get());
resource_provider_software_ = FakeResourceProvider::Create(
output_surface_software_.get(), shared_bitmap_manager_.get());
}
scoped_refptr<media::VideoFrame> CreateTestYUVVideoFrame() {
const int kDimension = 10;
gfx::Size size(kDimension, kDimension);
static uint8 y_data[kDimension * kDimension] = { 0 };
static uint8 u_data[kDimension * kDimension / 2] = { 0 };
static uint8 v_data[kDimension * kDimension / 2] = { 0 };
return media::VideoFrame::WrapExternalYuvData(
media::VideoFrame::YV16, // format
size, // coded_size
gfx::Rect(size), // visible_rect
size, // natural_size
size.width(), // y_stride
size.width() / 2, // u_stride
size.width() / 2, // v_stride
y_data, // y_data
u_data, // u_data
v_data, // v_data
base::TimeDelta()); // timestamp
}
static void ReleaseMailboxCB(unsigned sync_point) {}
scoped_refptr<media::VideoFrame> CreateTestRGBAHardwareVideoFrame() {
const int kDimension = 10;
gfx::Size size(kDimension, kDimension);
gpu::Mailbox mailbox;
mailbox.name[0] = 51;
const unsigned sync_point = 7;
const unsigned target = GL_TEXTURE_2D;
return media::VideoFrame::WrapNativeTexture(
gpu::MailboxHolder(mailbox, target, sync_point),
base::Bind(&ReleaseMailboxCB),
size, // coded_size
gfx::Rect(size), // visible_rect
size, // natural_size
base::TimeDelta(), // timestamp
false, // allow_overlay
true); // has_alpha
}
scoped_refptr<media::VideoFrame> CreateTestYUVHardareVideoFrame() {
const int kDimension = 10;
gfx::Size size(kDimension, kDimension);
const int kPlanesNum = 3;
gpu::Mailbox mailbox[kPlanesNum];
for (int i = 0; i < kPlanesNum; ++i) {
mailbox[i].name[0] = 50 + 1;
}
const unsigned sync_point = 7;
const unsigned target = GL_TEXTURE_RECTANGLE_ARB;
return media::VideoFrame::WrapYUV420NativeTextures(
gpu::MailboxHolder(mailbox[media::VideoFrame::kYPlane], target,
sync_point),
gpu::MailboxHolder(mailbox[media::VideoFrame::kUPlane], target,
sync_point),
gpu::MailboxHolder(mailbox[media::VideoFrame::kVPlane], target,
sync_point),
base::Bind(&ReleaseMailboxCB),
size, // coded_size
gfx::Rect(size), // visible_rect
size, // natural_size
base::TimeDelta(), // timestamp
false); // allow_overlay
}
WebGraphicsContext3DUploadCounter* context3d_;
FakeOutputSurfaceClient client_;
scoped_ptr<FakeOutputSurface> output_surface3d_;
scoped_ptr<FakeOutputSurface> output_surface_software_;
scoped_ptr<SharedBitmapManagerAllocationCounter> shared_bitmap_manager_;
scoped_ptr<ResourceProvider> resource_provider3d_;
scoped_ptr<ResourceProvider> resource_provider_software_;
};
TEST_F(VideoResourceUpdaterTest, SoftwareFrame) {
VideoResourceUpdater updater(output_surface3d_->context_provider(),
resource_provider3d_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
VideoFrameExternalResources resources =
updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type);
}
TEST_F(VideoResourceUpdaterTest, ReuseResource) {
VideoResourceUpdater updater(output_surface3d_->context_provider(),
resource_provider3d_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
video_frame->set_timestamp(base::TimeDelta::FromSeconds(1234));
// Allocate the resources for a YUV video frame.
context3d_->ResetUploadCount();
VideoFrameExternalResources resources =
updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type);
EXPECT_EQ(size_t(3), resources.mailboxes.size());
EXPECT_EQ(size_t(3), resources.release_callbacks.size());
EXPECT_EQ(size_t(0), resources.software_resources.size());
// Expect exactly three texture uploads, one for each plane.
EXPECT_EQ(3, context3d_->UploadCount());
// Simulate the ResourceProvider releasing the resources back to the video
// updater.
for (ReleaseCallbackImpl& release_callback : resources.release_callbacks)
release_callback.Run(0, false, nullptr);
// Allocate resources for the same frame.
context3d_->ResetUploadCount();
resources = updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type);
EXPECT_EQ(size_t(3), resources.mailboxes.size());
EXPECT_EQ(size_t(3), resources.release_callbacks.size());
// The data should be reused so expect no texture uploads.
EXPECT_EQ(0, context3d_->UploadCount());
}
TEST_F(VideoResourceUpdaterTest, ReuseResourceNoDelete) {
VideoResourceUpdater updater(output_surface3d_->context_provider(),
resource_provider3d_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
video_frame->set_timestamp(base::TimeDelta::FromSeconds(1234));
// Allocate the resources for a YUV video frame.
context3d_->ResetUploadCount();
VideoFrameExternalResources resources =
updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type);
EXPECT_EQ(size_t(3), resources.mailboxes.size());
EXPECT_EQ(size_t(3), resources.release_callbacks.size());
EXPECT_EQ(size_t(0), resources.software_resources.size());
// Expect exactly three texture uploads, one for each plane.
EXPECT_EQ(3, context3d_->UploadCount());
// Allocate resources for the same frame.
context3d_->ResetUploadCount();
resources = updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type);
EXPECT_EQ(size_t(3), resources.mailboxes.size());
EXPECT_EQ(size_t(3), resources.release_callbacks.size());
// The data should be reused so expect no texture uploads.
EXPECT_EQ(0, context3d_->UploadCount());
}
TEST_F(VideoResourceUpdaterTest, SoftwareFrameSoftwareCompositor) {
VideoResourceUpdater updater(nullptr, resource_provider_software_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
VideoFrameExternalResources resources =
updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::SOFTWARE_RESOURCE, resources.type);
}
TEST_F(VideoResourceUpdaterTest, ReuseResourceSoftwareCompositor) {
VideoResourceUpdater updater(nullptr, resource_provider_software_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
video_frame->set_timestamp(base::TimeDelta::FromSeconds(1234));
// Allocate the resources for a software video frame.
shared_bitmap_manager_->ResetAllocationCount();
VideoFrameExternalResources resources =
updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::SOFTWARE_RESOURCE, resources.type);
EXPECT_EQ(size_t(0), resources.mailboxes.size());
EXPECT_EQ(size_t(0), resources.release_callbacks.size());
EXPECT_EQ(size_t(1), resources.software_resources.size());
// Expect exactly one allocated shared bitmap.
EXPECT_EQ(1, shared_bitmap_manager_->AllocationCount());
// Simulate the ResourceProvider releasing the resource back to the video
// updater.
resources.software_release_callback.Run(0, false, nullptr);
// Allocate resources for the same frame.
shared_bitmap_manager_->ResetAllocationCount();
resources = updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::SOFTWARE_RESOURCE, resources.type);
EXPECT_EQ(size_t(0), resources.mailboxes.size());
EXPECT_EQ(size_t(0), resources.release_callbacks.size());
EXPECT_EQ(size_t(1), resources.software_resources.size());
// The data should be reused so expect no new allocations.
EXPECT_EQ(0, shared_bitmap_manager_->AllocationCount());
}
TEST_F(VideoResourceUpdaterTest, ReuseResourceNoDeleteSoftwareCompositor) {
VideoResourceUpdater updater(nullptr, resource_provider_software_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
video_frame->set_timestamp(base::TimeDelta::FromSeconds(1234));
// Allocate the resources for a software video frame.
shared_bitmap_manager_->ResetAllocationCount();
VideoFrameExternalResources resources =
updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::SOFTWARE_RESOURCE, resources.type);
EXPECT_EQ(size_t(0), resources.mailboxes.size());
EXPECT_EQ(size_t(0), resources.release_callbacks.size());
EXPECT_EQ(size_t(1), resources.software_resources.size());
// Expect exactly one allocated shared bitmap.
EXPECT_EQ(1, shared_bitmap_manager_->AllocationCount());
// Allocate resources for the same frame.
shared_bitmap_manager_->ResetAllocationCount();
resources = updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::SOFTWARE_RESOURCE, resources.type);
EXPECT_EQ(size_t(0), resources.mailboxes.size());
EXPECT_EQ(size_t(0), resources.release_callbacks.size());
EXPECT_EQ(size_t(1), resources.software_resources.size());
// The data should be reused so expect no new allocations.
EXPECT_EQ(0, shared_bitmap_manager_->AllocationCount());
}
TEST_F(VideoResourceUpdaterTest, CreateForHardwarePlanes) {
VideoResourceUpdater updater(output_surface3d_->context_provider(),
resource_provider3d_.get());
scoped_refptr<media::VideoFrame> video_frame =
CreateTestRGBAHardwareVideoFrame();
VideoFrameExternalResources resources =
updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::RGBA_RESOURCE, resources.type);
EXPECT_EQ(1u, resources.mailboxes.size());
EXPECT_EQ(1u, resources.release_callbacks.size());
EXPECT_EQ(0u, resources.software_resources.size());
video_frame = CreateTestYUVHardareVideoFrame();
resources = updater.CreateExternalResourcesFromVideoFrame(video_frame);
EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type);
EXPECT_EQ(3u, resources.mailboxes.size());
EXPECT_EQ(3u, resources.release_callbacks.size());
EXPECT_EQ(0u, resources.software_resources.size());
}
} // namespace
} // namespace cc
|