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