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 #include "rtc_base/ref_counted_object.h"
15
16 namespace webrtc {
17 namespace test {
18
CreateFrame(int width,int height,uint32_t timestamp,int64_t render_time_ms,VideoRotation rotation)19 VideoFrame FakeNativeBuffer::CreateFrame(int width,
20 int height,
21 uint32_t timestamp,
22 int64_t render_time_ms,
23 VideoRotation rotation) {
24 return VideoFrame::Builder()
25 .set_video_frame_buffer(
26 new rtc::RefCountedObject<FakeNativeBuffer>(width, height))
27 .set_timestamp_rtp(timestamp)
28 .set_timestamp_ms(render_time_ms)
29 .set_rotation(rotation)
30 .build();
31 }
32
type() const33 VideoFrameBuffer::Type FakeNativeBuffer::type() const {
34 return Type::kNative;
35 }
36
width() const37 int FakeNativeBuffer::width() const {
38 return width_;
39 }
40
height() const41 int FakeNativeBuffer::height() const {
42 return height_;
43 }
44
ToI420()45 rtc::scoped_refptr<I420BufferInterface> FakeNativeBuffer::ToI420() {
46 rtc::scoped_refptr<I420Buffer> buffer = I420Buffer::Create(width_, height_);
47 I420Buffer::SetBlack(buffer);
48 return buffer;
49 }
50
51 } // namespace test
52 } // namespace webrtc
53