kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 1 | /* |
pwestin@webrtc.org | ce33035 | 2012-04-12 06:59:14 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 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 | */ |
kjellander@webrtc.org | 5b97b12 | 2011-12-08 07:42:18 +0000 | [diff] [blame] | 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "modules/video_coding/codecs/test/videoprocessor.h" |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 12 | |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 13 | #include <string.h> |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 14 | #include <algorithm> |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 15 | #include <cstddef> |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 16 | #include <limits> |
Erik Språng | 08127a9 | 2016-11-16 16:41:30 +0100 | [diff] [blame] | 17 | #include <utility> |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 18 | |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 19 | #include "absl/memory/memory.h" |
Jiawei Ou | c2ebe21 | 2018-11-08 10:02:56 -0800 | [diff] [blame] | 20 | #include "api/video/builtin_video_bitrate_allocator_factory.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 21 | #include "api/video/i420_buffer.h" |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 22 | #include "api/video/video_bitrate_allocator_factory.h" |
| 23 | #include "api/video/video_frame_buffer.h" |
| 24 | #include "api/video/video_rotation.h" |
| 25 | #include "api/video_codecs/video_codec.h" |
Mirko Bonadei | 7120742 | 2017-09-15 13:58:09 +0200 | [diff] [blame] | 26 | #include "common_types.h" // NOLINT(build/include) |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 27 | #include "common_video/h264/h264_common.h" |
Rasmus Brandt | 5f7a891 | 2018-02-28 17:17:15 +0100 | [diff] [blame] | 28 | #include "common_video/libyuv/include/webrtc_libyuv.h" |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 29 | #include "modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 30 | #include "modules/video_coding/codecs/interface/common_constants.h" |
Rasmus Brandt | d00c895 | 2018-03-14 12:29:57 +0100 | [diff] [blame] | 31 | #include "modules/video_coding/include/video_error_codes.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 32 | #include "rtc_base/checks.h" |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 33 | #include "rtc_base/scoped_ref_ptr.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 34 | #include "rtc_base/time_utils.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 35 | #include "test/gtest.h" |
Sergey Silkin | 8d3758e | 2018-03-14 11:28:15 +0100 | [diff] [blame] | 36 | #include "third_party/libyuv/include/libyuv/compare.h" |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 37 | #include "third_party/libyuv/include/libyuv/scale.h" |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 38 | |
| 39 | namespace webrtc { |
| 40 | namespace test { |
| 41 | |
Kári Tristan Helgason | 169005d | 2018-05-22 13:34:14 +0200 | [diff] [blame] | 42 | using FrameStatistics = VideoCodecTestStats::FrameStatistics; |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 43 | |
Kári Tristan Helgason | 169005d | 2018-05-22 13:34:14 +0200 | [diff] [blame] | 44 | namespace { |
Åsa Persson | 91af24a | 2018-01-24 17:20:18 +0100 | [diff] [blame] | 45 | const int kMsToRtpTimestamp = kVideoPayloadTypeFrequency / 1000; |
Sami Kalliomäki | c75a5e8 | 2018-07-09 13:27:42 +0200 | [diff] [blame] | 46 | const int kMaxBufferedInputFrames = 20; |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 47 | |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 48 | size_t GetMaxNaluSizeBytes(const EncodedImage& encoded_frame, |
Kári Tristan Helgason | 169005d | 2018-05-22 13:34:14 +0200 | [diff] [blame] | 49 | const VideoCodecTestFixture::Config& config) { |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 50 | if (config.codec_settings.codecType != kVideoCodecH264) |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 51 | return 0; |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 52 | |
| 53 | std::vector<webrtc::H264::NaluIndex> nalu_indices = |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 54 | webrtc::H264::FindNaluIndices(encoded_frame.data(), encoded_frame.size()); |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 55 | |
| 56 | RTC_CHECK(!nalu_indices.empty()); |
| 57 | |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 58 | size_t max_size = 0; |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 59 | for (const webrtc::H264::NaluIndex& index : nalu_indices) |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 60 | max_size = std::max(max_size, index.payload_size); |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 61 | |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 62 | return max_size; |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 65 | size_t GetTemporalLayerIndex(const CodecSpecificInfo& codec_specific) { |
| 66 | size_t temporal_idx = 0; |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 67 | if (codec_specific.codecType == kVideoCodecVP8) { |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 68 | temporal_idx = codec_specific.codecSpecific.VP8.temporalIdx; |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 69 | } else if (codec_specific.codecType == kVideoCodecVP9) { |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 70 | temporal_idx = codec_specific.codecSpecific.VP9.temporal_idx; |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 71 | } |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 72 | if (temporal_idx == kNoTemporalIdx) { |
| 73 | temporal_idx = 0; |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 74 | } |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 75 | return temporal_idx; |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 76 | } |
| 77 | |
asapersson | ae9ba04 | 2017-03-07 00:25:38 -0800 | [diff] [blame] | 78 | int GetElapsedTimeMicroseconds(int64_t start_ns, int64_t stop_ns) { |
| 79 | int64_t diff_us = (stop_ns - start_ns) / rtc::kNumNanosecsPerMicrosec; |
| 80 | RTC_DCHECK_GE(diff_us, std::numeric_limits<int>::min()); |
| 81 | RTC_DCHECK_LE(diff_us, std::numeric_limits<int>::max()); |
| 82 | return static_cast<int>(diff_us); |
| 83 | } |
| 84 | |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 85 | void ExtractI420BufferWithSize(const VideoFrame& image, |
| 86 | int width, |
| 87 | int height, |
| 88 | rtc::Buffer* buffer) { |
Åsa Persson | f0c4467 | 2017-10-24 16:03:39 +0200 | [diff] [blame] | 89 | if (image.width() != width || image.height() != height) { |
| 90 | EXPECT_DOUBLE_EQ(static_cast<double>(width) / height, |
| 91 | static_cast<double>(image.width()) / image.height()); |
| 92 | // Same aspect ratio, no cropping needed. |
| 93 | rtc::scoped_refptr<I420Buffer> scaled(I420Buffer::Create(width, height)); |
| 94 | scaled->ScaleFrom(*image.video_frame_buffer()->ToI420()); |
| 95 | |
| 96 | size_t length = |
| 97 | CalcBufferSize(VideoType::kI420, scaled->width(), scaled->height()); |
| 98 | buffer->SetSize(length); |
| 99 | RTC_CHECK_NE(ExtractBuffer(scaled, length, buffer->data()), -1); |
| 100 | return; |
| 101 | } |
| 102 | |
| 103 | // No resize. |
| 104 | size_t length = |
| 105 | CalcBufferSize(VideoType::kI420, image.width(), image.height()); |
| 106 | buffer->SetSize(length); |
| 107 | RTC_CHECK_NE(ExtractBuffer(image, length, buffer->data()), -1); |
| 108 | } |
| 109 | |
Sergey Silkin | 8d3758e | 2018-03-14 11:28:15 +0100 | [diff] [blame] | 110 | void CalculateFrameQuality(const I420BufferInterface& ref_buffer, |
| 111 | const I420BufferInterface& dec_buffer, |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 112 | FrameStatistics* frame_stat) { |
Sergey Silkin | 8d3758e | 2018-03-14 11:28:15 +0100 | [diff] [blame] | 113 | if (ref_buffer.width() != dec_buffer.width() || |
| 114 | ref_buffer.height() != dec_buffer.height()) { |
| 115 | RTC_CHECK_GE(ref_buffer.width(), dec_buffer.width()); |
| 116 | RTC_CHECK_GE(ref_buffer.height(), dec_buffer.height()); |
| 117 | // Downscale reference frame. |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 118 | rtc::scoped_refptr<I420Buffer> scaled_buffer = |
Sergey Silkin | 8d3758e | 2018-03-14 11:28:15 +0100 | [diff] [blame] | 119 | I420Buffer::Create(dec_buffer.width(), dec_buffer.height()); |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 120 | I420Scale(ref_buffer.DataY(), ref_buffer.StrideY(), ref_buffer.DataU(), |
| 121 | ref_buffer.StrideU(), ref_buffer.DataV(), ref_buffer.StrideV(), |
| 122 | ref_buffer.width(), ref_buffer.height(), |
| 123 | scaled_buffer->MutableDataY(), scaled_buffer->StrideY(), |
| 124 | scaled_buffer->MutableDataU(), scaled_buffer->StrideU(), |
| 125 | scaled_buffer->MutableDataV(), scaled_buffer->StrideV(), |
| 126 | scaled_buffer->width(), scaled_buffer->height(), |
| 127 | libyuv::kFilterBox); |
Sergey Silkin | 8d3758e | 2018-03-14 11:28:15 +0100 | [diff] [blame] | 128 | |
| 129 | CalculateFrameQuality(*scaled_buffer, dec_buffer, frame_stat); |
| 130 | } else { |
| 131 | const uint64_t sse_y = libyuv::ComputeSumSquareErrorPlane( |
| 132 | dec_buffer.DataY(), dec_buffer.StrideY(), ref_buffer.DataY(), |
| 133 | ref_buffer.StrideY(), dec_buffer.width(), dec_buffer.height()); |
| 134 | |
| 135 | const uint64_t sse_u = libyuv::ComputeSumSquareErrorPlane( |
| 136 | dec_buffer.DataU(), dec_buffer.StrideU(), ref_buffer.DataU(), |
| 137 | ref_buffer.StrideU(), dec_buffer.width() / 2, dec_buffer.height() / 2); |
| 138 | |
| 139 | const uint64_t sse_v = libyuv::ComputeSumSquareErrorPlane( |
| 140 | dec_buffer.DataV(), dec_buffer.StrideV(), ref_buffer.DataV(), |
| 141 | ref_buffer.StrideV(), dec_buffer.width() / 2, dec_buffer.height() / 2); |
| 142 | |
| 143 | const size_t num_y_samples = dec_buffer.width() * dec_buffer.height(); |
| 144 | const size_t num_u_samples = |
| 145 | dec_buffer.width() / 2 * dec_buffer.height() / 2; |
| 146 | |
| 147 | frame_stat->psnr_y = libyuv::SumSquareErrorToPsnr(sse_y, num_y_samples); |
| 148 | frame_stat->psnr_u = libyuv::SumSquareErrorToPsnr(sse_u, num_u_samples); |
| 149 | frame_stat->psnr_v = libyuv::SumSquareErrorToPsnr(sse_v, num_u_samples); |
| 150 | frame_stat->psnr = libyuv::SumSquareErrorToPsnr( |
| 151 | sse_y + sse_u + sse_v, num_y_samples + 2 * num_u_samples); |
| 152 | frame_stat->ssim = I420SSIM(ref_buffer, dec_buffer); |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 153 | } |
| 154 | } |
| 155 | |
Kári Tristan Helgason | 169005d | 2018-05-22 13:34:14 +0200 | [diff] [blame] | 156 | std::vector<FrameType> FrameTypeForFrame( |
| 157 | const VideoCodecTestFixture::Config& config, |
| 158 | size_t frame_idx) { |
| 159 | if (config.keyframe_interval > 0 && |
| 160 | (frame_idx % config.keyframe_interval == 0)) { |
| 161 | return {kVideoFrameKey}; |
| 162 | } |
| 163 | return {kVideoFrameDelta}; |
| 164 | } |
| 165 | |
brandtr | b78bc75 | 2017-02-22 01:26:59 -0800 | [diff] [blame] | 166 | } // namespace |
| 167 | |
brandtr | c409552 | 2017-08-07 08:12:33 -0700 | [diff] [blame] | 168 | VideoProcessor::VideoProcessor(webrtc::VideoEncoder* encoder, |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 169 | VideoDecoderList* decoders, |
| 170 | FrameReader* input_frame_reader, |
Kári Tristan Helgason | 169005d | 2018-05-22 13:34:14 +0200 | [diff] [blame] | 171 | const VideoCodecTestFixture::Config& config, |
| 172 | VideoCodecTestStats* stats, |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 173 | IvfFileWriterList* encoded_frame_writers, |
| 174 | FrameWriterList* decoded_frame_writers) |
Åsa Persson | f0c4467 | 2017-10-24 16:03:39 +0200 | [diff] [blame] | 175 | : config_(config), |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 176 | num_simulcast_or_spatial_layers_( |
| 177 | std::max(config_.NumberOfSimulcastStreams(), |
| 178 | config_.NumberOfSpatialLayers())), |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 179 | stats_(stats), |
brandtr | 07734a5 | 2017-08-08 08:35:53 -0700 | [diff] [blame] | 180 | encoder_(encoder), |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 181 | decoders_(decoders), |
Jiawei Ou | c2ebe21 | 2018-11-08 10:02:56 -0800 | [diff] [blame] | 182 | bitrate_allocator_( |
| 183 | CreateBuiltinVideoBitrateAllocatorFactory() |
| 184 | ->CreateVideoBitrateAllocator(config_.codec_settings)), |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 185 | framerate_fps_(0), |
brandtr | bdd555c | 2017-08-21 01:34:04 -0700 | [diff] [blame] | 186 | encode_callback_(this), |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 187 | input_frame_reader_(input_frame_reader), |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 188 | merged_encoded_frames_(num_simulcast_or_spatial_layers_), |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 189 | encoded_frame_writers_(encoded_frame_writers), |
| 190 | decoded_frame_writers_(decoded_frame_writers), |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 191 | last_inputed_frame_num_(0), |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 192 | last_inputed_timestamp_(0), |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 193 | first_encoded_frame_(num_simulcast_or_spatial_layers_, true), |
| 194 | last_encoded_frame_num_(num_simulcast_or_spatial_layers_), |
| 195 | first_decoded_frame_(num_simulcast_or_spatial_layers_, true), |
Sergey Silkin | c89eed9 | 2018-04-01 23:57:51 +0200 | [diff] [blame] | 196 | last_decoded_frame_num_(num_simulcast_or_spatial_layers_), |
Sergey Silkin | 5613879 | 2018-05-02 10:50:55 +0200 | [diff] [blame] | 197 | decoded_frame_buffer_(num_simulcast_or_spatial_layers_), |
Sergey Silkin | c89eed9 | 2018-04-01 23:57:51 +0200 | [diff] [blame] | 198 | post_encode_time_ns_(0) { |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 199 | // Sanity checks. |
Rasmus Brandt | 4b381af | 2018-02-07 13:56:16 +0100 | [diff] [blame] | 200 | RTC_CHECK(rtc::TaskQueue::Current()) |
| 201 | << "VideoProcessor must be run on a task queue."; |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 202 | RTC_CHECK(encoder); |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 203 | RTC_CHECK(decoders); |
| 204 | RTC_CHECK_EQ(decoders->size(), num_simulcast_or_spatial_layers_); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 205 | RTC_CHECK(input_frame_reader); |
| 206 | RTC_CHECK(stats); |
| 207 | RTC_CHECK(!encoded_frame_writers || |
| 208 | encoded_frame_writers->size() == num_simulcast_or_spatial_layers_); |
| 209 | RTC_CHECK(!decoded_frame_writers || |
| 210 | decoded_frame_writers->size() == num_simulcast_or_spatial_layers_); |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 211 | |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 212 | // Setup required callbacks for the encoder and decoder and initialize them. |
brandtr | bdd555c | 2017-08-21 01:34:04 -0700 | [diff] [blame] | 213 | RTC_CHECK_EQ(encoder_->RegisterEncodeCompleteCallback(&encode_callback_), |
Åsa Persson | f0c4467 | 2017-10-24 16:03:39 +0200 | [diff] [blame] | 214 | WEBRTC_VIDEO_CODEC_OK); |
asapersson | 654d54c | 2017-02-10 00:16:07 -0800 | [diff] [blame] | 215 | |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 216 | // Initialize codecs so that they are ready to receive frames. |
Sergey Silkin | 1723cf9 | 2018-01-22 15:49:55 +0100 | [diff] [blame] | 217 | RTC_CHECK_EQ(encoder_->InitEncode(&config_.codec_settings, |
| 218 | static_cast<int>(config_.NumberOfCores()), |
| 219 | config_.max_payload_size_bytes), |
| 220 | WEBRTC_VIDEO_CODEC_OK); |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 221 | |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 222 | for (size_t i = 0; i < num_simulcast_or_spatial_layers_; ++i) { |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 223 | decode_callback_.push_back( |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 224 | absl::make_unique<VideoProcessorDecodeCompleteCallback>(this, i)); |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 225 | RTC_CHECK_EQ( |
| 226 | decoders_->at(i)->InitDecode(&config_.codec_settings, |
| 227 | static_cast<int>(config_.NumberOfCores())), |
| 228 | WEBRTC_VIDEO_CODEC_OK); |
| 229 | RTC_CHECK_EQ(decoders_->at(i)->RegisterDecodeCompleteCallback( |
| 230 | decode_callback_.at(i).get()), |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 231 | WEBRTC_VIDEO_CODEC_OK); |
| 232 | } |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 233 | } |
| 234 | |
Åsa Persson | f0c4467 | 2017-10-24 16:03:39 +0200 | [diff] [blame] | 235 | VideoProcessor::~VideoProcessor() { |
brandtr | c8c5905 | 2017-08-21 06:44:16 -0700 | [diff] [blame] | 236 | RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
| 237 | |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 238 | // Explicitly reset codecs, in case they don't do that themselves when they |
| 239 | // go out of scope. |
brandtr | 77920a4 | 2017-08-11 07:48:15 -0700 | [diff] [blame] | 240 | RTC_CHECK_EQ(encoder_->Release(), WEBRTC_VIDEO_CODEC_OK); |
brandtr | bdd555c | 2017-08-21 01:34:04 -0700 | [diff] [blame] | 241 | encoder_->RegisterEncodeCompleteCallback(nullptr); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 242 | for (auto& decoder : *decoders_) { |
| 243 | RTC_CHECK_EQ(decoder->Release(), WEBRTC_VIDEO_CODEC_OK); |
| 244 | decoder->RegisterDecodeCompleteCallback(nullptr); |
| 245 | } |
| 246 | |
Rasmus Brandt | d00c895 | 2018-03-14 12:29:57 +0100 | [diff] [blame] | 247 | // Sanity check. |
| 248 | RTC_CHECK_LE(input_frames_.size(), kMaxBufferedInputFrames); |
| 249 | |
| 250 | // Deal with manual memory management of EncodedImage's. |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 251 | for (size_t i = 0; i < num_simulcast_or_spatial_layers_; ++i) { |
| 252 | uint8_t* buffer = merged_encoded_frames_.at(i)._buffer; |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 253 | if (buffer) { |
| 254 | delete[] buffer; |
| 255 | } |
| 256 | } |
brandtr | 77920a4 | 2017-08-11 07:48:15 -0700 | [diff] [blame] | 257 | } |
| 258 | |
brandtr | 8935d97 | 2017-09-06 01:53:22 -0700 | [diff] [blame] | 259 | void VideoProcessor::ProcessFrame() { |
brandtr | c8c5905 | 2017-08-21 06:44:16 -0700 | [diff] [blame] | 260 | RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 261 | const size_t frame_number = last_inputed_frame_num_++; |
asapersson | 654d54c | 2017-02-10 00:16:07 -0800 | [diff] [blame] | 262 | |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 263 | // Get input frame and store for future quality calculation. |
| 264 | rtc::scoped_refptr<I420BufferInterface> buffer = |
| 265 | input_frame_reader_->ReadFrame(); |
brandtr | bdd555c | 2017-08-21 01:34:04 -0700 | [diff] [blame] | 266 | RTC_CHECK(buffer) << "Tried to read too many frames from the file."; |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 267 | const size_t timestamp = |
| 268 | last_inputed_timestamp_ + kVideoPayloadTypeFrequency / framerate_fps_; |
Artem Titov | 1ebfb6a | 2019-01-03 23:49:37 +0100 | [diff] [blame] | 269 | VideoFrame input_frame = |
| 270 | VideoFrame::Builder() |
| 271 | .set_video_frame_buffer(buffer) |
| 272 | .set_timestamp_rtp(static_cast<uint32_t>(timestamp)) |
| 273 | .set_timestamp_ms(static_cast<int64_t>(timestamp / kMsToRtpTimestamp)) |
| 274 | .set_rotation(webrtc::kVideoRotation_0) |
| 275 | .build(); |
Rasmus Brandt | d00c895 | 2018-03-14 12:29:57 +0100 | [diff] [blame] | 276 | // Store input frame as a reference for quality calculations. |
| 277 | if (config_.decode && !config_.measure_cpu) { |
Rasmus Brandt | 7b92ceb | 2018-06-26 12:34:59 +0200 | [diff] [blame] | 278 | if (input_frames_.size() == kMaxBufferedInputFrames) { |
| 279 | input_frames_.erase(input_frames_.begin()); |
| 280 | } |
Rasmus Brandt | d00c895 | 2018-03-14 12:29:57 +0100 | [diff] [blame] | 281 | input_frames_.emplace(frame_number, input_frame); |
| 282 | } |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 283 | last_inputed_timestamp_ = timestamp; |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 284 | |
Sergey Silkin | c89eed9 | 2018-04-01 23:57:51 +0200 | [diff] [blame] | 285 | post_encode_time_ns_ = 0; |
| 286 | |
Rasmus Brandt | 5f7a891 | 2018-02-28 17:17:15 +0100 | [diff] [blame] | 287 | // Create frame statistics object for all simulcast/spatial layers. |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 288 | for (size_t i = 0; i < num_simulcast_or_spatial_layers_; ++i) { |
Sergey Silkin | 02fed02 | 2018-09-25 13:48:19 +0200 | [diff] [blame] | 289 | FrameStatistics frame_stat(frame_number, timestamp, i); |
| 290 | stats_->AddFrame(frame_stat); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 291 | } |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 292 | |
| 293 | // For the highest measurement accuracy of the encode time, the start/stop |
| 294 | // time recordings should wrap the Encode call as tightly as possible. |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 295 | const int64_t encode_start_ns = rtc::TimeNanos(); |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 296 | for (size_t i = 0; i < num_simulcast_or_spatial_layers_; ++i) { |
| 297 | FrameStatistics* frame_stat = stats_->GetFrame(frame_number, i); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 298 | frame_stat->encode_start_ns = encode_start_ns; |
| 299 | } |
| 300 | |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 301 | // Encode. |
| 302 | const std::vector<FrameType> frame_types = |
Kári Tristan Helgason | 169005d | 2018-05-22 13:34:14 +0200 | [diff] [blame] | 303 | FrameTypeForFrame(config_, frame_number); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 304 | const int encode_return_code = |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 305 | encoder_->Encode(input_frame, nullptr, &frame_types); |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 306 | for (size_t i = 0; i < num_simulcast_or_spatial_layers_; ++i) { |
| 307 | FrameStatistics* frame_stat = stats_->GetFrame(frame_number, i); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 308 | frame_stat->encode_return_code = encode_return_code; |
| 309 | } |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 310 | } |
| 311 | |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 312 | void VideoProcessor::SetRates(size_t bitrate_kbps, size_t framerate_fps) { |
brandtr | c8c5905 | 2017-08-21 06:44:16 -0700 | [diff] [blame] | 313 | RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 314 | framerate_fps_ = static_cast<uint32_t>(framerate_fps); |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 315 | bitrate_allocation_ = bitrate_allocator_->GetAllocation( |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 316 | static_cast<uint32_t>(bitrate_kbps * 1000), framerate_fps_); |
| 317 | const int set_rates_result = |
| 318 | encoder_->SetRateAllocation(bitrate_allocation_, framerate_fps_); |
brandtr | bea36fd | 2017-08-07 03:36:54 -0700 | [diff] [blame] | 319 | RTC_DCHECK_GE(set_rates_result, 0) |
brandtr | bdd555c | 2017-08-21 01:34:04 -0700 | [diff] [blame] | 320 | << "Failed to update encoder with new rate " << bitrate_kbps << "."; |
brandtr | bea36fd | 2017-08-07 03:36:54 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Sami Kalliomäki | 451b29c | 2018-07-04 14:33:51 +0200 | [diff] [blame] | 323 | int32_t VideoProcessor::VideoProcessorDecodeCompleteCallback::Decoded( |
| 324 | VideoFrame& image) { |
| 325 | // Post the callback to the right task queue, if needed. |
| 326 | if (!task_queue_->IsCurrent()) { |
| 327 | // There might be a limited amount of output buffers, make a copy to make |
| 328 | // sure we don't block the decoder. |
Artem Titov | 1ebfb6a | 2019-01-03 23:49:37 +0100 | [diff] [blame] | 329 | VideoFrame copy = VideoFrame::Builder() |
| 330 | .set_video_frame_buffer(I420Buffer::Copy( |
| 331 | *image.video_frame_buffer()->ToI420())) |
| 332 | .set_rotation(image.rotation()) |
| 333 | .set_timestamp_us(image.timestamp_us()) |
| 334 | .set_id(image.id()) |
| 335 | .build(); |
Sami Kalliomäki | 451b29c | 2018-07-04 14:33:51 +0200 | [diff] [blame] | 336 | copy.set_timestamp(image.timestamp()); |
| 337 | |
| 338 | task_queue_->PostTask([this, copy]() { |
| 339 | video_processor_->FrameDecoded(copy, simulcast_svc_idx_); |
| 340 | }); |
| 341 | return 0; |
| 342 | } |
| 343 | video_processor_->FrameDecoded(image, simulcast_svc_idx_); |
| 344 | return 0; |
| 345 | } |
| 346 | |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 347 | void VideoProcessor::FrameEncoded( |
| 348 | const webrtc::EncodedImage& encoded_image, |
| 349 | const webrtc::CodecSpecificInfo& codec_specific) { |
brandtr | c8c5905 | 2017-08-21 06:44:16 -0700 | [diff] [blame] | 350 | RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
| 351 | |
brandtr | 32e0d26 | 2017-02-15 05:29:38 -0800 | [diff] [blame] | 352 | // For the highest measurement accuracy of the encode time, the start/stop |
| 353 | // time recordings should wrap the Encode call as tightly as possible. |
Rasmus Brandt | 5f7a891 | 2018-02-28 17:17:15 +0100 | [diff] [blame] | 354 | const int64_t encode_stop_ns = rtc::TimeNanos(); |
brandtr | 32e0d26 | 2017-02-15 05:29:38 -0800 | [diff] [blame] | 355 | |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 356 | const VideoCodecType codec_type = codec_specific.codecType; |
Rasmus Brandt | f7a3558 | 2017-10-24 10:16:33 +0200 | [diff] [blame] | 357 | if (config_.encoded_frame_checker) { |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 358 | config_.encoded_frame_checker->CheckEncodedFrame(codec_type, encoded_image); |
Rasmus Brandt | f7a3558 | 2017-10-24 10:16:33 +0200 | [diff] [blame] | 359 | } |
brandtr | b78bc75 | 2017-02-22 01:26:59 -0800 | [diff] [blame] | 360 | |
Rasmus Brandt | d062a3c | 2018-03-08 16:45:54 +0100 | [diff] [blame] | 361 | // Layer metadata. |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 362 | size_t spatial_idx = encoded_image.SpatialIndex().value_or(0); |
| 363 | size_t temporal_idx = GetTemporalLayerIndex(codec_specific); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 364 | |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 365 | FrameStatistics* frame_stat = |
Niels Möller | 2377588 | 2018-08-16 10:24:12 +0200 | [diff] [blame] | 366 | stats_->GetFrameWithTimestamp(encoded_image.Timestamp(), spatial_idx); |
Åsa Persson | a6e7b88 | 2018-01-19 14:57:10 +0100 | [diff] [blame] | 367 | const size_t frame_number = frame_stat->frame_number; |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 368 | |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 369 | // Ensure that the encode order is monotonically increasing, within this |
| 370 | // simulcast/spatial layer. |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 371 | RTC_CHECK(first_encoded_frame_[spatial_idx] || |
| 372 | last_encoded_frame_num_[spatial_idx] < frame_number); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 373 | |
| 374 | // Ensure SVC spatial layers are delivered in ascending order. |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 375 | if (!first_encoded_frame_[spatial_idx] && |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 376 | config_.NumberOfSpatialLayers() > 1) { |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 377 | for (size_t i = 0; i < spatial_idx; ++i) { |
Sergey Silkin | 122ba6c | 2018-03-27 14:32:21 +0200 | [diff] [blame] | 378 | RTC_CHECK_LE(last_encoded_frame_num_[i], frame_number); |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 379 | } |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 380 | for (size_t i = spatial_idx + 1; i < num_simulcast_or_spatial_layers_; |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 381 | ++i) { |
| 382 | RTC_CHECK_GT(frame_number, last_encoded_frame_num_[i]); |
| 383 | } |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 384 | } |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 385 | first_encoded_frame_[spatial_idx] = false; |
| 386 | last_encoded_frame_num_[spatial_idx] = frame_number; |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 387 | |
brandtr | 8935d97 | 2017-09-06 01:53:22 -0700 | [diff] [blame] | 388 | // Update frame statistics. |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 389 | frame_stat->encoding_successful = true; |
Sergey Silkin | c89eed9 | 2018-04-01 23:57:51 +0200 | [diff] [blame] | 390 | frame_stat->encode_time_us = GetElapsedTimeMicroseconds( |
| 391 | frame_stat->encode_start_ns, encode_stop_ns - post_encode_time_ns_); |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 392 | frame_stat->target_bitrate_kbps = |
Sergey Silkin | bfd54ef | 2018-04-13 23:41:11 +0200 | [diff] [blame] | 393 | bitrate_allocation_.GetTemporalLayerSum(spatial_idx, temporal_idx) / 1000; |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 394 | frame_stat->length_bytes = encoded_image.size(); |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 395 | frame_stat->frame_type = encoded_image._frameType; |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 396 | frame_stat->temporal_idx = temporal_idx; |
Sergey Silkin | 3be2a55 | 2018-01-17 15:11:44 +0100 | [diff] [blame] | 397 | frame_stat->max_nalu_size_bytes = GetMaxNaluSizeBytes(encoded_image, config_); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 398 | frame_stat->qp = encoded_image.qp_; |
ssilkin | 612f858 | 2017-09-28 09:23:17 -0700 | [diff] [blame] | 399 | |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 400 | const size_t num_spatial_layers = config_.NumberOfSpatialLayers(); |
Sergey Silkin | bc0f0d3 | 2018-04-24 21:29:14 +0200 | [diff] [blame] | 401 | bool end_of_picture = false; |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 402 | if (codec_type == kVideoCodecVP9) { |
| 403 | const CodecSpecificInfoVP9& vp9_info = codec_specific.codecSpecific.VP9; |
| 404 | frame_stat->inter_layer_predicted = vp9_info.inter_layer_predicted; |
Sergey Silkin | 3c30c9c | 2018-05-02 09:18:48 +0200 | [diff] [blame] | 405 | frame_stat->non_ref_for_inter_layer_pred = |
| 406 | vp9_info.non_ref_for_inter_layer_pred; |
Sergey Silkin | bc0f0d3 | 2018-04-24 21:29:14 +0200 | [diff] [blame] | 407 | end_of_picture = vp9_info.end_of_picture; |
Sergey Silkin | 3c30c9c | 2018-05-02 09:18:48 +0200 | [diff] [blame] | 408 | } else { |
| 409 | frame_stat->inter_layer_predicted = false; |
| 410 | frame_stat->non_ref_for_inter_layer_pred = true; |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 411 | } |
| 412 | |
Sergey Silkin | 122ba6c | 2018-03-27 14:32:21 +0200 | [diff] [blame] | 413 | const webrtc::EncodedImage* encoded_image_for_decode = &encoded_image; |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 414 | if (config_.decode || encoded_frame_writers_) { |
| 415 | if (num_spatial_layers > 1) { |
| 416 | encoded_image_for_decode = BuildAndStoreSuperframe( |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 417 | encoded_image, codec_type, frame_number, spatial_idx, |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 418 | frame_stat->inter_layer_predicted); |
Rasmus Brandt | d00c895 | 2018-03-14 12:29:57 +0100 | [diff] [blame] | 419 | } |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | if (config_.decode) { |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 423 | DecodeFrame(*encoded_image_for_decode, spatial_idx); |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 424 | |
Sergey Silkin | 3c30c9c | 2018-05-02 09:18:48 +0200 | [diff] [blame] | 425 | if (end_of_picture && num_spatial_layers > 1) { |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 426 | // If inter-layer prediction is enabled and upper layer was dropped then |
| 427 | // base layer should be passed to upper layer decoder. Otherwise decoder |
| 428 | // won't be able to decode next superframe. |
| 429 | const EncodedImage* base_image = nullptr; |
Sergey Silkin | 3c30c9c | 2018-05-02 09:18:48 +0200 | [diff] [blame] | 430 | const FrameStatistics* base_stat = nullptr; |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 431 | for (size_t i = 0; i < num_spatial_layers; ++i) { |
Sergey Silkin | 3c30c9c | 2018-05-02 09:18:48 +0200 | [diff] [blame] | 432 | const bool layer_dropped = (first_decoded_frame_[i] || |
| 433 | last_decoded_frame_num_[i] < frame_number); |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 434 | |
| 435 | // Ensure current layer was decoded. |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 436 | RTC_CHECK(layer_dropped == false || i != spatial_idx); |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 437 | |
| 438 | if (!layer_dropped) { |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 439 | base_image = &merged_encoded_frames_[i]; |
Sergey Silkin | 3c30c9c | 2018-05-02 09:18:48 +0200 | [diff] [blame] | 440 | base_stat = |
Niels Möller | 2377588 | 2018-08-16 10:24:12 +0200 | [diff] [blame] | 441 | stats_->GetFrameWithTimestamp(encoded_image.Timestamp(), i); |
Sergey Silkin | 3c30c9c | 2018-05-02 09:18:48 +0200 | [diff] [blame] | 442 | } else if (base_image && !base_stat->non_ref_for_inter_layer_pred) { |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 443 | DecodeFrame(*base_image, i); |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 444 | } |
| 445 | } |
| 446 | } |
Rasmus Brandt | d00c895 | 2018-03-14 12:29:57 +0100 | [diff] [blame] | 447 | } else { |
| 448 | frame_stat->decode_return_code = WEBRTC_VIDEO_CODEC_NO_OUTPUT; |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 449 | } |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 450 | |
| 451 | if (encoded_frame_writers_) { |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 452 | RTC_CHECK(encoded_frame_writers_->at(spatial_idx) |
Sergey Silkin | 122ba6c | 2018-03-27 14:32:21 +0200 | [diff] [blame] | 453 | ->WriteFrame(*encoded_image_for_decode, |
| 454 | config_.codec_settings.codecType)); |
brandtr | 8935d97 | 2017-09-06 01:53:22 -0700 | [diff] [blame] | 455 | } |
Sergey Silkin | c89eed9 | 2018-04-01 23:57:51 +0200 | [diff] [blame] | 456 | |
Kári Tristan Helgason | f167762 | 2018-08-24 13:21:26 +0200 | [diff] [blame] | 457 | if (!config_.encode_in_real_time) { |
Sergey Silkin | c89eed9 | 2018-04-01 23:57:51 +0200 | [diff] [blame] | 458 | // To get pure encode time for next layers, measure time spent in encode |
| 459 | // callback and subtract it from encode time of next layers. |
| 460 | post_encode_time_ns_ += rtc::TimeNanos() - encode_stop_ns; |
| 461 | } |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 462 | } |
| 463 | |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 464 | void VideoProcessor::FrameDecoded(const VideoFrame& decoded_frame, |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 465 | size_t spatial_idx) { |
brandtr | c8c5905 | 2017-08-21 06:44:16 -0700 | [diff] [blame] | 466 | RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
| 467 | |
brandtr | 32e0d26 | 2017-02-15 05:29:38 -0800 | [diff] [blame] | 468 | // For the highest measurement accuracy of the decode time, the start/stop |
| 469 | // time recordings should wrap the Decode call as tightly as possible. |
Rasmus Brandt | 5f7a891 | 2018-02-28 17:17:15 +0100 | [diff] [blame] | 470 | const int64_t decode_stop_ns = rtc::TimeNanos(); |
brandtr | 8bc9385 | 2017-02-15 05:19:51 -0800 | [diff] [blame] | 471 | |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 472 | FrameStatistics* frame_stat = |
| 473 | stats_->GetFrameWithTimestamp(decoded_frame.timestamp(), spatial_idx); |
Åsa Persson | a6e7b88 | 2018-01-19 14:57:10 +0100 | [diff] [blame] | 474 | const size_t frame_number = frame_stat->frame_number; |
Sergey Silkin | 64eaa99 | 2017-11-17 14:47:32 +0100 | [diff] [blame] | 475 | |
Sergey Silkin | 5613879 | 2018-05-02 10:50:55 +0200 | [diff] [blame] | 476 | if (decoded_frame_writers_ && !first_decoded_frame_[spatial_idx]) { |
| 477 | // Fill drops with last decoded frame to make them look like freeze at |
| 478 | // playback and to keep decoded layers in sync. |
| 479 | for (size_t i = last_decoded_frame_num_[spatial_idx] + 1; i < frame_number; |
| 480 | ++i) { |
| 481 | RTC_CHECK(decoded_frame_writers_->at(spatial_idx) |
| 482 | ->WriteFrame(decoded_frame_buffer_[spatial_idx].data())); |
| 483 | } |
| 484 | } |
| 485 | |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 486 | // Ensure that the decode order is monotonically increasing, within this |
| 487 | // simulcast/spatial layer. |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 488 | RTC_CHECK(first_decoded_frame_[spatial_idx] || |
| 489 | last_decoded_frame_num_[spatial_idx] < frame_number); |
| 490 | first_decoded_frame_[spatial_idx] = false; |
| 491 | last_decoded_frame_num_[spatial_idx] = frame_number; |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 492 | |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 493 | // Update frame statistics. |
| 494 | frame_stat->decoding_successful = true; |
| 495 | frame_stat->decode_time_us = |
| 496 | GetElapsedTimeMicroseconds(frame_stat->decode_start_ns, decode_stop_ns); |
| 497 | frame_stat->decoded_width = decoded_frame.width(); |
| 498 | frame_stat->decoded_height = decoded_frame.height(); |
| 499 | |
Sergey Silkin | 64eaa99 | 2017-11-17 14:47:32 +0100 | [diff] [blame] | 500 | // Skip quality metrics calculation to not affect CPU usage. |
| 501 | if (!config_.measure_cpu) { |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 502 | const auto reference_frame = input_frames_.find(frame_number); |
| 503 | RTC_CHECK(reference_frame != input_frames_.cend()) |
| 504 | << "The codecs are either buffering too much, dropping too much, or " |
| 505 | "being too slow relative the input frame rate."; |
Sergey Silkin | 8d3758e | 2018-03-14 11:28:15 +0100 | [diff] [blame] | 506 | CalculateFrameQuality( |
| 507 | *reference_frame->second.video_frame_buffer()->ToI420(), |
| 508 | *decoded_frame.video_frame_buffer()->ToI420(), frame_stat); |
Niels Möller | 718a763 | 2016-06-13 13:06:01 +0200 | [diff] [blame] | 509 | |
Rasmus Brandt | d00c895 | 2018-03-14 12:29:57 +0100 | [diff] [blame] | 510 | // Erase all buffered input frames that we have moved past for all |
| 511 | // simulcast/spatial layers. Never buffer more than |
| 512 | // |kMaxBufferedInputFrames| frames, to protect against long runs of |
| 513 | // consecutive frame drops for a particular layer. |
| 514 | const auto min_last_decoded_frame_num = std::min_element( |
| 515 | last_decoded_frame_num_.cbegin(), last_decoded_frame_num_.cend()); |
| 516 | const size_t min_buffered_frame_num = std::max( |
| 517 | 0, static_cast<int>(frame_number) - kMaxBufferedInputFrames + 1); |
| 518 | RTC_CHECK(min_last_decoded_frame_num != last_decoded_frame_num_.cend()); |
| 519 | const auto input_frames_erase_before = input_frames_.lower_bound( |
| 520 | std::max(*min_last_decoded_frame_num, min_buffered_frame_num)); |
| 521 | input_frames_.erase(input_frames_.cbegin(), input_frames_erase_before); |
| 522 | } |
Sergey Silkin | 64eaa99 | 2017-11-17 14:47:32 +0100 | [diff] [blame] | 523 | |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 524 | if (decoded_frame_writers_) { |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 525 | ExtractI420BufferWithSize(decoded_frame, config_.codec_settings.width, |
Sergey Silkin | 5613879 | 2018-05-02 10:50:55 +0200 | [diff] [blame] | 526 | config_.codec_settings.height, |
| 527 | &decoded_frame_buffer_[spatial_idx]); |
| 528 | RTC_CHECK_EQ(decoded_frame_buffer_[spatial_idx].size(), |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 529 | decoded_frame_writers_->at(spatial_idx)->FrameLength()); |
| 530 | RTC_CHECK(decoded_frame_writers_->at(spatial_idx) |
Sergey Silkin | 5613879 | 2018-05-02 10:50:55 +0200 | [diff] [blame] | 531 | ->WriteFrame(decoded_frame_buffer_[spatial_idx].data())); |
Sergey Silkin | 64eaa99 | 2017-11-17 14:47:32 +0100 | [diff] [blame] | 532 | } |
Åsa Persson | f0c4467 | 2017-10-24 16:03:39 +0200 | [diff] [blame] | 533 | } |
brandtr | 17b958c | 2017-03-07 01:41:43 -0800 | [diff] [blame] | 534 | |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 535 | void VideoProcessor::DecodeFrame(const EncodedImage& encoded_image, |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 536 | size_t spatial_idx) { |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 537 | RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 538 | FrameStatistics* frame_stat = |
Niels Möller | 2377588 | 2018-08-16 10:24:12 +0200 | [diff] [blame] | 539 | stats_->GetFrameWithTimestamp(encoded_image.Timestamp(), spatial_idx); |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 540 | |
| 541 | frame_stat->decode_start_ns = rtc::TimeNanos(); |
| 542 | frame_stat->decode_return_code = |
Niels Möller | 401d076 | 2018-05-08 11:54:29 +0200 | [diff] [blame] | 543 | decoders_->at(spatial_idx)->Decode(encoded_image, false, nullptr, 0); |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | const webrtc::EncodedImage* VideoProcessor::BuildAndStoreSuperframe( |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 547 | const EncodedImage& encoded_image, |
| 548 | const VideoCodecType codec, |
| 549 | size_t frame_number, |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 550 | size_t spatial_idx, |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 551 | bool inter_layer_predicted) { |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 552 | // Should only be called for SVC. |
| 553 | RTC_CHECK_GT(config_.NumberOfSpatialLayers(), 1); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 554 | |
| 555 | EncodedImage base_image; |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 556 | RTC_CHECK_EQ(base_image.size(), 0); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 557 | |
Sergey Silkin | 122ba6c | 2018-03-27 14:32:21 +0200 | [diff] [blame] | 558 | // Each SVC layer is decoded with dedicated decoder. Find the nearest |
| 559 | // non-dropped base frame and merge it and current frame into superframe. |
Sergey Silkin | 645e2e0 | 2018-04-06 09:42:13 +0200 | [diff] [blame] | 560 | if (inter_layer_predicted) { |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 561 | for (int base_idx = static_cast<int>(spatial_idx) - 1; base_idx >= 0; |
Sergey Silkin | 122ba6c | 2018-03-27 14:32:21 +0200 | [diff] [blame] | 562 | --base_idx) { |
| 563 | EncodedImage lower_layer = merged_encoded_frames_.at(base_idx); |
Niels Möller | 2377588 | 2018-08-16 10:24:12 +0200 | [diff] [blame] | 564 | if (lower_layer.Timestamp() == encoded_image.Timestamp()) { |
Sergey Silkin | 122ba6c | 2018-03-27 14:32:21 +0200 | [diff] [blame] | 565 | base_image = lower_layer; |
| 566 | break; |
| 567 | } |
| 568 | } |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 569 | } |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 570 | const size_t payload_size_bytes = base_image.size() + encoded_image.size(); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 571 | const size_t buffer_size_bytes = |
| 572 | payload_size_bytes + EncodedImage::GetBufferPaddingBytes(codec); |
| 573 | |
| 574 | uint8_t* copied_buffer = new uint8_t[buffer_size_bytes]; |
| 575 | RTC_CHECK(copied_buffer); |
| 576 | |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 577 | if (base_image.size()) { |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 578 | RTC_CHECK(base_image._buffer); |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 579 | memcpy(copied_buffer, base_image.data(), base_image.size()); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 580 | } |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 581 | memcpy(copied_buffer + base_image.size(), encoded_image.data(), |
| 582 | encoded_image.size()); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 583 | |
| 584 | EncodedImage copied_image = encoded_image; |
| 585 | copied_image = encoded_image; |
Niels Möller | 48a7946 | 2018-12-07 16:21:18 +0100 | [diff] [blame] | 586 | copied_image.set_buffer(copied_buffer, buffer_size_bytes); |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 587 | copied_image.set_size(payload_size_bytes); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 588 | |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 589 | // Replace previous EncodedImage for this spatial layer. |
Niels Möller | 77536a2 | 2019-01-15 08:50:01 +0100 | [diff] [blame] | 590 | uint8_t* old_data = merged_encoded_frames_.at(spatial_idx).data(); |
| 591 | if (old_data) { |
| 592 | delete[] old_data; |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 593 | } |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 594 | merged_encoded_frames_.at(spatial_idx) = copied_image; |
Rasmus Brandt | 0f1c0bd | 2018-03-12 10:01:16 +0100 | [diff] [blame] | 595 | |
Sergey Silkin | bc20fe1 | 2018-04-15 21:06:16 +0200 | [diff] [blame] | 596 | return &merged_encoded_frames_.at(spatial_idx); |
Sergey Silkin | 10d9d59 | 2018-02-01 13:25:17 +0100 | [diff] [blame] | 597 | } |
| 598 | |
kjellander@webrtc.org | 35a1756 | 2011-10-06 06:44:54 +0000 | [diff] [blame] | 599 | } // namespace test |
| 600 | } // namespace webrtc |