blob: c5ba231bfba05a4c2d83d1cb719ec66f0e0ff2fd [file] [log] [blame]
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +00001/*
2 * Copyright (c) 2013 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "test/fake_decoder.h"
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000012
Yves Gerey3e707812018-11-28 16:47:49 +010013#include <string.h>
14
Ilya Nikolaevskiy2ebf5232019-05-13 16:13:36 +020015#include "absl/memory/memory.h"
Mirko Bonadeid9708072019-01-25 20:26:48 +010016#include "api/scoped_refptr.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020017#include "api/video/i420_buffer.h"
Yves Gerey3e707812018-11-28 16:47:49 +010018#include "api/video/video_frame.h"
19#include "api/video/video_frame_buffer.h"
20#include "api/video/video_rotation.h"
21#include "modules/video_coding/include/video_error_codes.h"
22#include "rtc_base/checks.h"
Ilya Nikolaevskiy2ebf5232019-05-13 16:13:36 +020023#include "rtc_base/task_queue.h"
Steve Anton10542f22019-01-11 09:11:00 -080024#include "rtc_base/time_utils.h"
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000025
26namespace webrtc {
27namespace test {
28
Ilya Nikolaevskiyb0588e62018-08-27 14:12:27 +020029namespace {
30const int kDefaultWidth = 320;
31const int kDefaultHeight = 180;
32} // namespace
33
Ilya Nikolaevskiy2ebf5232019-05-13 16:13:36 +020034FakeDecoder::FakeDecoder() : FakeDecoder(nullptr) {}
35
36FakeDecoder::FakeDecoder(TaskQueueFactory* task_queue_factory)
37 : callback_(nullptr),
38 width_(kDefaultWidth),
39 height_(kDefaultHeight),
40 task_queue_factory_(task_queue_factory),
41 decode_delay_ms_(0) {}
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000042
43int32_t FakeDecoder::InitDecode(const VideoCodec* config,
44 int32_t number_of_cores) {
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000045 return WEBRTC_VIDEO_CODEC_OK;
46}
47
48int32_t FakeDecoder::Decode(const EncodedImage& input,
49 bool missing_frames,
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000050 int64_t render_time_ms) {
philipel0e075722018-04-05 13:04:42 +020051 if (input._encodedWidth > 0 && input._encodedHeight > 0) {
52 width_ = input._encodedWidth;
53 height_ = input._encodedHeight;
54 }
55
Ilya Nikolaevskiy2ebf5232019-05-13 16:13:36 +020056 rtc::scoped_refptr<I420Buffer> buffer = I420Buffer::Create(width_, height_);
57 I420Buffer::SetBlack(buffer);
58 VideoFrame frame = VideoFrame::Builder()
59 .set_video_frame_buffer(buffer)
60 .set_rotation(webrtc::kVideoRotation_0)
61 .set_timestamp_ms(render_time_ms)
62 .build();
Niels Möller23775882018-08-16 10:24:12 +020063 frame.set_timestamp(input.Timestamp());
Artem Titarenko84ae2b62019-04-24 12:56:36 +000064 frame.set_ntp_time_ms(input.ntp_time_ms_);
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000065
Ilya Nikolaevskiy2ebf5232019-05-13 16:13:36 +020066 if (decode_delay_ms_ == 0 || !task_queue_) {
67 callback_->Decoded(frame);
68 } else {
69 task_queue_->PostDelayedTask(
70 [frame, this]() {
71 VideoFrame copy = frame;
72 callback_->Decoded(copy);
73 },
74 decode_delay_ms_);
75 }
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000076
77 return WEBRTC_VIDEO_CODEC_OK;
78}
79
Ilya Nikolaevskiy2ebf5232019-05-13 16:13:36 +020080void FakeDecoder::SetDelayedDecoding(int decode_delay_ms) {
81 RTC_CHECK(task_queue_factory_);
82 if (!task_queue_) {
83 task_queue_ =
84 absl::make_unique<rtc::TaskQueue>(task_queue_factory_->CreateTaskQueue(
85 "fake_decoder", TaskQueueFactory::Priority::NORMAL));
86 }
87 decode_delay_ms_ = decode_delay_ms;
88}
89
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +000090int32_t FakeDecoder::RegisterDecodeCompleteCallback(
91 DecodedImageCallback* callback) {
92 callback_ = callback;
93 return WEBRTC_VIDEO_CODEC_OK;
94}
95
96int32_t FakeDecoder::Release() {
97 return WEBRTC_VIDEO_CODEC_OK;
98}
Peter Boströmb7d9a972015-12-18 16:01:11 +010099
Peter Boströmb7d9a972015-12-18 16:01:11 +0100100const char* FakeDecoder::kImplementationName = "fake_decoder";
101const char* FakeDecoder::ImplementationName() const {
102 return kImplementationName;
103}
104
stefan@webrtc.org79c33592014-08-06 09:24:53 +0000105int32_t FakeH264Decoder::Decode(const EncodedImage& input,
106 bool missing_frames,
stefan@webrtc.org79c33592014-08-06 09:24:53 +0000107 int64_t render_time_ms) {
108 uint8_t value = 0;
Niels Möller77536a22019-01-15 08:50:01 +0100109 for (size_t i = 0; i < input.size(); ++i) {
stefan@webrtc.org79c33592014-08-06 09:24:53 +0000110 uint8_t kStartCode[] = {0, 0, 0, 1};
Niels Möller77536a22019-01-15 08:50:01 +0100111 if (i < input.size() - sizeof(kStartCode) &&
Niels Möller24871e42019-01-17 11:31:13 +0100112 !memcmp(&input.data()[i], kStartCode, sizeof(kStartCode))) {
stefan@webrtc.org79c33592014-08-06 09:24:53 +0000113 i += sizeof(kStartCode) + 1; // Skip start code and NAL header.
114 }
Niels Möller24871e42019-01-17 11:31:13 +0100115 if (input.data()[i] != value) {
116 RTC_CHECK_EQ(value, input.data()[i])
stefan@webrtc.org79c33592014-08-06 09:24:53 +0000117 << "Bitstream mismatch between sender and receiver.";
118 return -1;
119 }
120 ++value;
121 }
Niels Möller7aacdd92019-03-25 09:11:40 +0100122 return FakeDecoder::Decode(input, missing_frames, render_time_ms);
stefan@webrtc.org79c33592014-08-06 09:24:53 +0000123}
124
pbos@webrtc.org0181b5f2013-09-09 08:26:30 +0000125} // namespace test
126} // namespace webrtc