1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #include "test/fake_texture_frame.h"
12
13 #include "api/video/i420_buffer.h"
14
15 namespace webrtc {
16 namespace test {
17
CreateFrame(int width,int height,uint32_t timestamp,int64_t render_time_ms,VideoRotation rotation)18 VideoFrame FakeNativeBuffer::CreateFrame(int width,
19 int height,
20 uint32_t timestamp,
21 int64_t render_time_ms,
22 VideoRotation rotation) {
23 return VideoFrame::Builder()
24 .set_video_frame_buffer(
25 rtc::make_ref_counted<FakeNativeBuffer>(width, height))
26 .set_timestamp_rtp(timestamp)
27 .set_timestamp_ms(render_time_ms)
28 .set_rotation(rotation)
29 .build();
30 }
31
type() const32 VideoFrameBuffer::Type FakeNativeBuffer::type() const {
33 return Type::kNative;
34 }
35
width() const36 int FakeNativeBuffer::width() const {
37 return width_;
38 }
39
height() const40 int FakeNativeBuffer::height() const {
41 return height_;
42 }
43
ToI420()44 rtc::scoped_refptr<I420BufferInterface> FakeNativeBuffer::ToI420() {
45 rtc::scoped_refptr<I420Buffer> buffer = I420Buffer::Create(width_, height_);
46 I420Buffer::SetBlack(buffer.get());
47 return buffer;
48 }
49
50 } // namespace test
51 } // namespace webrtc
52