Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #include "call/rtp_payload_params.h" |
| 12 | |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 13 | #include <stddef.h> |
Jonas Olsson | a4d8737 | 2019-07-05 19:08:33 +0200 | [diff] [blame] | 14 | |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 15 | #include <algorithm> |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 16 | |
| 17 | #include "absl/container/inlined_vector.h" |
Erik Språng | cbc0cba | 2020-04-18 14:36:59 +0200 | [diff] [blame] | 18 | #include "absl/strings/match.h" |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 19 | #include "absl/types/variant.h" |
| 20 | #include "api/video/video_timing.h" |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 21 | #include "modules/video_coding/codecs/h264/include/h264_globals.h" |
| 22 | #include "modules/video_coding/codecs/interface/common_constants.h" |
| 23 | #include "modules/video_coding/codecs/vp8/include/vp8_globals.h" |
| 24 | #include "modules/video_coding/codecs/vp9/include/vp9_globals.h" |
Danil Chapovalov | 02d71fb | 2020-02-10 16:22:57 +0100 | [diff] [blame] | 25 | #include "modules/video_coding/frame_dependencies_calculator.h" |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 26 | #include "rtc_base/arraysize.h" |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 27 | #include "rtc_base/checks.h" |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 28 | #include "rtc_base/logging.h" |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 29 | #include "rtc_base/random.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 30 | #include "rtc_base/time_utils.h" |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 31 | |
| 32 | namespace webrtc { |
| 33 | |
| 34 | namespace { |
| 35 | void PopulateRtpWithCodecSpecifics(const CodecSpecificInfo& info, |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 36 | absl::optional<int> spatial_index, |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 37 | RTPVideoHeader* rtp) { |
| 38 | rtp->codec = info.codecType; |
| 39 | switch (info.codecType) { |
| 40 | case kVideoCodecVP8: { |
Philip Eliasson | d52a1a6 | 2018-09-07 13:03:55 +0000 | [diff] [blame] | 41 | auto& vp8_header = rtp->video_type_header.emplace<RTPVideoHeaderVP8>(); |
| 42 | vp8_header.InitRTPVideoHeaderVP8(); |
| 43 | vp8_header.nonReference = info.codecSpecific.VP8.nonReference; |
| 44 | vp8_header.temporalIdx = info.codecSpecific.VP8.temporalIdx; |
| 45 | vp8_header.layerSync = info.codecSpecific.VP8.layerSync; |
| 46 | vp8_header.keyIdx = info.codecSpecific.VP8.keyIdx; |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 47 | rtp->simulcastIdx = spatial_index.value_or(0); |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 48 | return; |
| 49 | } |
| 50 | case kVideoCodecVP9: { |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 51 | auto& vp9_header = rtp->video_type_header.emplace<RTPVideoHeaderVP9>(); |
| 52 | vp9_header.InitRTPVideoHeaderVP9(); |
| 53 | vp9_header.inter_pic_predicted = |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 54 | info.codecSpecific.VP9.inter_pic_predicted; |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 55 | vp9_header.flexible_mode = info.codecSpecific.VP9.flexible_mode; |
| 56 | vp9_header.ss_data_available = info.codecSpecific.VP9.ss_data_available; |
| 57 | vp9_header.non_ref_for_inter_layer_pred = |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 58 | info.codecSpecific.VP9.non_ref_for_inter_layer_pred; |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 59 | vp9_header.temporal_idx = info.codecSpecific.VP9.temporal_idx; |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 60 | vp9_header.temporal_up_switch = info.codecSpecific.VP9.temporal_up_switch; |
| 61 | vp9_header.inter_layer_predicted = |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 62 | info.codecSpecific.VP9.inter_layer_predicted; |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 63 | vp9_header.gof_idx = info.codecSpecific.VP9.gof_idx; |
| 64 | vp9_header.num_spatial_layers = info.codecSpecific.VP9.num_spatial_layers; |
Ilya Nikolaevskiy | f5d8778 | 2020-02-04 10:06:33 +0000 | [diff] [blame] | 65 | vp9_header.first_active_layer = info.codecSpecific.VP9.first_active_layer; |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 66 | if (vp9_header.num_spatial_layers > 1) { |
| 67 | vp9_header.spatial_idx = spatial_index.value_or(kNoSpatialIdx); |
| 68 | } else { |
| 69 | vp9_header.spatial_idx = kNoSpatialIdx; |
| 70 | } |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 71 | if (info.codecSpecific.VP9.ss_data_available) { |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 72 | vp9_header.spatial_layer_resolution_present = |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 73 | info.codecSpecific.VP9.spatial_layer_resolution_present; |
| 74 | if (info.codecSpecific.VP9.spatial_layer_resolution_present) { |
| 75 | for (size_t i = 0; i < info.codecSpecific.VP9.num_spatial_layers; |
| 76 | ++i) { |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 77 | vp9_header.width[i] = info.codecSpecific.VP9.width[i]; |
| 78 | vp9_header.height[i] = info.codecSpecific.VP9.height[i]; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 79 | } |
| 80 | } |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 81 | vp9_header.gof.CopyGofInfoVP9(info.codecSpecific.VP9.gof); |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 82 | } |
| 83 | |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 84 | vp9_header.num_ref_pics = info.codecSpecific.VP9.num_ref_pics; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 85 | for (int i = 0; i < info.codecSpecific.VP9.num_ref_pics; ++i) { |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 86 | vp9_header.pid_diff[i] = info.codecSpecific.VP9.p_diff[i]; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 87 | } |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 88 | vp9_header.end_of_picture = info.codecSpecific.VP9.end_of_picture; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 89 | return; |
| 90 | } |
| 91 | case kVideoCodecH264: { |
philipel | 7d745e5 | 2018-08-02 14:03:53 +0200 | [diff] [blame] | 92 | auto& h264_header = rtp->video_type_header.emplace<RTPVideoHeaderH264>(); |
| 93 | h264_header.packetization_mode = |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 94 | info.codecSpecific.H264.packetization_mode; |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 95 | rtp->simulcastIdx = spatial_index.value_or(0); |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 96 | return; |
| 97 | } |
| 98 | case kVideoCodecMultiplex: |
| 99 | case kVideoCodecGeneric: |
| 100 | rtp->codec = kVideoCodecGeneric; |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 101 | rtp->simulcastIdx = spatial_index.value_or(0); |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 102 | return; |
| 103 | default: |
| 104 | return; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void SetVideoTiming(const EncodedImage& image, VideoSendTiming* timing) { |
| 109 | if (image.timing_.flags == VideoSendTiming::TimingFrameFlags::kInvalid || |
| 110 | image.timing_.flags == VideoSendTiming::TimingFrameFlags::kNotTriggered) { |
| 111 | timing->flags = VideoSendTiming::TimingFrameFlags::kInvalid; |
| 112 | return; |
| 113 | } |
| 114 | |
| 115 | timing->encode_start_delta_ms = VideoSendTiming::GetDeltaCappedMs( |
| 116 | image.capture_time_ms_, image.timing_.encode_start_ms); |
| 117 | timing->encode_finish_delta_ms = VideoSendTiming::GetDeltaCappedMs( |
| 118 | image.capture_time_ms_, image.timing_.encode_finish_ms); |
| 119 | timing->packetization_finish_delta_ms = 0; |
| 120 | timing->pacer_exit_delta_ms = 0; |
| 121 | timing->network_timestamp_delta_ms = 0; |
| 122 | timing->network2_timestamp_delta_ms = 0; |
| 123 | timing->flags = image.timing_.flags; |
| 124 | } |
| 125 | } // namespace |
| 126 | |
| 127 | RtpPayloadParams::RtpPayloadParams(const uint32_t ssrc, |
Erik Språng | cbc0cba | 2020-04-18 14:36:59 +0200 | [diff] [blame] | 128 | const RtpPayloadState* state, |
| 129 | const WebRtcKeyValueConfig& trials) |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 130 | : ssrc_(ssrc), |
| 131 | generic_picture_id_experiment_( |
Erik Språng | cbc0cba | 2020-04-18 14:36:59 +0200 | [diff] [blame] | 132 | absl::StartsWith(trials.Lookup("WebRTC-GenericPictureId"), |
Danil Chapovalov | 636865e | 2020-06-03 14:11:26 +0200 | [diff] [blame] | 133 | "Enabled")) { |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 134 | for (auto& spatial_layer : last_shared_frame_id_) |
| 135 | spatial_layer.fill(-1); |
| 136 | |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 137 | buffer_id_to_frame_id_.fill(-1); |
| 138 | |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 139 | Random random(rtc::TimeMicros()); |
| 140 | state_.picture_id = |
| 141 | state ? state->picture_id : (random.Rand<int16_t>() & 0x7FFF); |
| 142 | state_.tl0_pic_idx = state ? state->tl0_pic_idx : (random.Rand<uint8_t>()); |
| 143 | } |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 144 | |
| 145 | RtpPayloadParams::RtpPayloadParams(const RtpPayloadParams& other) = default; |
| 146 | |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 147 | RtpPayloadParams::~RtpPayloadParams() {} |
| 148 | |
| 149 | RTPVideoHeader RtpPayloadParams::GetRtpVideoHeader( |
| 150 | const EncodedImage& image, |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 151 | const CodecSpecificInfo* codec_specific_info, |
| 152 | int64_t shared_frame_id) { |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 153 | RTPVideoHeader rtp_video_header; |
| 154 | if (codec_specific_info) { |
Niels Möller | d3b8c63 | 2018-08-27 15:33:42 +0200 | [diff] [blame] | 155 | PopulateRtpWithCodecSpecifics(*codec_specific_info, image.SpatialIndex(), |
| 156 | &rtp_video_header); |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 157 | } |
Danil Chapovalov | 51bf200 | 2019-10-11 10:53:27 +0200 | [diff] [blame] | 158 | rtp_video_header.frame_type = image._frameType, |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 159 | rtp_video_header.rotation = image.rotation_; |
| 160 | rtp_video_header.content_type = image.content_type_; |
| 161 | rtp_video_header.playout_delay = image.playout_delay_; |
philipel | fab9129 | 2018-10-17 14:36:08 +0200 | [diff] [blame] | 162 | rtp_video_header.width = image._encodedWidth; |
| 163 | rtp_video_header.height = image._encodedHeight; |
Johannes Kron | d0b69a8 | 2018-12-03 14:18:53 +0100 | [diff] [blame] | 164 | rtp_video_header.color_space = image.ColorSpace() |
| 165 | ? absl::make_optional(*image.ColorSpace()) |
| 166 | : absl::nullopt; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 167 | SetVideoTiming(image, &rtp_video_header.video_timing); |
| 168 | |
Niels Möller | 8f7ce22 | 2019-03-21 15:43:58 +0100 | [diff] [blame] | 169 | const bool is_keyframe = image._frameType == VideoFrameType::kVideoFrameKey; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 170 | const bool first_frame_in_picture = |
| 171 | (codec_specific_info && codec_specific_info->codecType == kVideoCodecVP9) |
| 172 | ? codec_specific_info->codecSpecific.VP9.first_frame_in_picture |
| 173 | : true; |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 174 | |
| 175 | SetCodecSpecific(&rtp_video_header, first_frame_in_picture); |
philipel | 569397f | 2018-09-26 12:25:31 +0200 | [diff] [blame] | 176 | |
Danil Chapovalov | 636865e | 2020-06-03 14:11:26 +0200 | [diff] [blame] | 177 | SetGeneric(codec_specific_info, shared_frame_id, is_keyframe, |
| 178 | &rtp_video_header); |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 179 | |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 180 | return rtp_video_header; |
| 181 | } |
| 182 | |
| 183 | uint32_t RtpPayloadParams::ssrc() const { |
| 184 | return ssrc_; |
| 185 | } |
| 186 | |
| 187 | RtpPayloadState RtpPayloadParams::state() const { |
| 188 | return state_; |
| 189 | } |
| 190 | |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 191 | void RtpPayloadParams::SetCodecSpecific(RTPVideoHeader* rtp_video_header, |
| 192 | bool first_frame_in_picture) { |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 193 | // Always set picture id. Set tl0_pic_idx iff temporal index is set. |
| 194 | if (first_frame_in_picture) { |
| 195 | state_.picture_id = (static_cast<uint16_t>(state_.picture_id) + 1) & 0x7FFF; |
| 196 | } |
| 197 | if (rtp_video_header->codec == kVideoCodecVP8) { |
Philip Eliasson | d52a1a6 | 2018-09-07 13:03:55 +0000 | [diff] [blame] | 198 | auto& vp8_header = |
| 199 | absl::get<RTPVideoHeaderVP8>(rtp_video_header->video_type_header); |
| 200 | vp8_header.pictureId = state_.picture_id; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 201 | |
Philip Eliasson | d52a1a6 | 2018-09-07 13:03:55 +0000 | [diff] [blame] | 202 | if (vp8_header.temporalIdx != kNoTemporalIdx) { |
| 203 | if (vp8_header.temporalIdx == 0) { |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 204 | ++state_.tl0_pic_idx; |
| 205 | } |
Philip Eliasson | d52a1a6 | 2018-09-07 13:03:55 +0000 | [diff] [blame] | 206 | vp8_header.tl0PicIdx = state_.tl0_pic_idx; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 207 | } |
| 208 | } |
| 209 | if (rtp_video_header->codec == kVideoCodecVP9) { |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 210 | auto& vp9_header = |
| 211 | absl::get<RTPVideoHeaderVP9>(rtp_video_header->video_type_header); |
| 212 | vp9_header.picture_id = state_.picture_id; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 213 | |
| 214 | // Note that in the case that we have no temporal layers but we do have |
| 215 | // spatial layers, packets will carry layering info with a temporal_idx of |
| 216 | // zero, and we then have to set and increment tl0_pic_idx. |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 217 | if (vp9_header.temporal_idx != kNoTemporalIdx || |
| 218 | vp9_header.spatial_idx != kNoSpatialIdx) { |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 219 | if (first_frame_in_picture && |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 220 | (vp9_header.temporal_idx == 0 || |
| 221 | vp9_header.temporal_idx == kNoTemporalIdx)) { |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 222 | ++state_.tl0_pic_idx; |
| 223 | } |
philipel | 29d8846 | 2018-08-08 14:26:00 +0200 | [diff] [blame] | 224 | vp9_header.tl0_pic_idx = state_.tl0_pic_idx; |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 225 | } |
| 226 | } |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 227 | if (generic_picture_id_experiment_ && |
| 228 | rtp_video_header->codec == kVideoCodecGeneric) { |
Danil Chapovalov | b6bf0b2 | 2020-01-28 18:36:57 +0100 | [diff] [blame] | 229 | rtp_video_header->video_type_header.emplace<RTPVideoHeaderLegacyGeneric>() |
| 230 | .picture_id = state_.picture_id; |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 231 | } |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 232 | } |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 233 | |
Danil Chapovalov | 02d71fb | 2020-02-10 16:22:57 +0100 | [diff] [blame] | 234 | RTPVideoHeader::GenericDescriptorInfo |
| 235 | RtpPayloadParams::GenericDescriptorFromFrameInfo( |
| 236 | const GenericFrameInfo& frame_info, |
| 237 | int64_t frame_id, |
| 238 | VideoFrameType frame_type) { |
| 239 | RTPVideoHeader::GenericDescriptorInfo generic; |
| 240 | generic.frame_id = frame_id; |
| 241 | generic.dependencies = dependencies_calculator_.FromBuffersUsage( |
| 242 | frame_type, frame_id, frame_info.encoder_buffers); |
Danil Chapovalov | 4b860c1 | 2020-05-19 14:48:19 +0200 | [diff] [blame] | 243 | generic.chain_diffs = |
| 244 | chains_calculator_.From(frame_id, frame_info.part_of_chain); |
Danil Chapovalov | 02d71fb | 2020-02-10 16:22:57 +0100 | [diff] [blame] | 245 | generic.spatial_index = frame_info.spatial_id; |
| 246 | generic.temporal_index = frame_info.temporal_id; |
| 247 | generic.decode_target_indications = frame_info.decode_target_indications; |
Danil Chapovalov | 02d71fb | 2020-02-10 16:22:57 +0100 | [diff] [blame] | 248 | return generic; |
| 249 | } |
| 250 | |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 251 | void RtpPayloadParams::SetGeneric(const CodecSpecificInfo* codec_specific_info, |
| 252 | int64_t frame_id, |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 253 | bool is_keyframe, |
| 254 | RTPVideoHeader* rtp_video_header) { |
Danil Chapovalov | 02d71fb | 2020-02-10 16:22:57 +0100 | [diff] [blame] | 255 | if (codec_specific_info && codec_specific_info->generic_frame_info && |
| 256 | !codec_specific_info->generic_frame_info->encoder_buffers.empty()) { |
Danil Chapovalov | 4b860c1 | 2020-05-19 14:48:19 +0200 | [diff] [blame] | 257 | if (is_keyframe) { |
| 258 | // Key frame resets all chains it is in. |
| 259 | chains_calculator_.Reset( |
| 260 | codec_specific_info->generic_frame_info->part_of_chain); |
| 261 | } |
Danil Chapovalov | 02d71fb | 2020-02-10 16:22:57 +0100 | [diff] [blame] | 262 | rtp_video_header->generic = |
| 263 | GenericDescriptorFromFrameInfo(*codec_specific_info->generic_frame_info, |
| 264 | frame_id, rtp_video_header->frame_type); |
| 265 | return; |
| 266 | } |
| 267 | |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 268 | switch (rtp_video_header->codec) { |
| 269 | case VideoCodecType::kVideoCodecGeneric: |
philipel | 8aba8fe | 2019-06-13 15:13:16 +0200 | [diff] [blame] | 270 | GenericToGeneric(frame_id, is_keyframe, rtp_video_header); |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 271 | return; |
| 272 | case VideoCodecType::kVideoCodecVP8: |
| 273 | if (codec_specific_info) { |
| 274 | Vp8ToGeneric(codec_specific_info->codecSpecific.VP8, frame_id, |
| 275 | is_keyframe, rtp_video_header); |
| 276 | } |
| 277 | return; |
| 278 | case VideoCodecType::kVideoCodecVP9: |
Danil Chapovalov | dc36829 | 2019-11-26 14:48:20 +0100 | [diff] [blame] | 279 | case VideoCodecType::kVideoCodecAV1: |
| 280 | // TODO(philipel): Implement VP9 and AV1 to generic descriptor. |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 281 | return; |
| 282 | case VideoCodecType::kVideoCodecH264: |
philipel | 8aba8fe | 2019-06-13 15:13:16 +0200 | [diff] [blame] | 283 | if (codec_specific_info) { |
| 284 | H264ToGeneric(codec_specific_info->codecSpecific.H264, frame_id, |
| 285 | is_keyframe, rtp_video_header); |
| 286 | } |
| 287 | return; |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 288 | case VideoCodecType::kVideoCodecMultiplex: |
| 289 | return; |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 290 | } |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 291 | RTC_NOTREACHED() << "Unsupported codec."; |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 292 | } |
| 293 | |
philipel | 8aba8fe | 2019-06-13 15:13:16 +0200 | [diff] [blame] | 294 | void RtpPayloadParams::GenericToGeneric(int64_t shared_frame_id, |
| 295 | bool is_keyframe, |
| 296 | RTPVideoHeader* rtp_video_header) { |
| 297 | RTPVideoHeader::GenericDescriptorInfo& generic = |
| 298 | rtp_video_header->generic.emplace(); |
| 299 | |
| 300 | generic.frame_id = shared_frame_id; |
| 301 | |
| 302 | if (is_keyframe) { |
| 303 | last_shared_frame_id_[0].fill(-1); |
| 304 | } else { |
| 305 | int64_t frame_id = last_shared_frame_id_[0][0]; |
| 306 | RTC_DCHECK_NE(frame_id, -1); |
| 307 | RTC_DCHECK_LT(frame_id, shared_frame_id); |
| 308 | generic.dependencies.push_back(frame_id); |
| 309 | } |
| 310 | |
| 311 | last_shared_frame_id_[0][0] = shared_frame_id; |
| 312 | } |
| 313 | |
| 314 | void RtpPayloadParams::H264ToGeneric(const CodecSpecificInfoH264& h264_info, |
| 315 | int64_t shared_frame_id, |
| 316 | bool is_keyframe, |
| 317 | RTPVideoHeader* rtp_video_header) { |
| 318 | const int temporal_index = |
| 319 | h264_info.temporal_idx != kNoTemporalIdx ? h264_info.temporal_idx : 0; |
| 320 | |
| 321 | if (temporal_index >= RtpGenericFrameDescriptor::kMaxTemporalLayers) { |
| 322 | RTC_LOG(LS_WARNING) << "Temporal and/or spatial index is too high to be " |
| 323 | "used with generic frame descriptor."; |
| 324 | return; |
| 325 | } |
| 326 | |
| 327 | RTPVideoHeader::GenericDescriptorInfo& generic = |
| 328 | rtp_video_header->generic.emplace(); |
| 329 | |
| 330 | generic.frame_id = shared_frame_id; |
| 331 | generic.temporal_index = temporal_index; |
| 332 | |
| 333 | if (is_keyframe) { |
| 334 | RTC_DCHECK_EQ(temporal_index, 0); |
| 335 | last_shared_frame_id_[/*spatial index*/ 0].fill(-1); |
| 336 | last_shared_frame_id_[/*spatial index*/ 0][temporal_index] = |
| 337 | shared_frame_id; |
| 338 | return; |
| 339 | } |
| 340 | |
| 341 | if (h264_info.base_layer_sync) { |
| 342 | int64_t tl0_frame_id = last_shared_frame_id_[/*spatial index*/ 0][0]; |
| 343 | |
| 344 | for (int i = 1; i < RtpGenericFrameDescriptor::kMaxTemporalLayers; ++i) { |
| 345 | if (last_shared_frame_id_[/*spatial index*/ 0][i] < tl0_frame_id) { |
| 346 | last_shared_frame_id_[/*spatial index*/ 0][i] = -1; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | RTC_DCHECK_GE(tl0_frame_id, 0); |
| 351 | RTC_DCHECK_LT(tl0_frame_id, shared_frame_id); |
| 352 | generic.dependencies.push_back(tl0_frame_id); |
| 353 | } else { |
| 354 | for (int i = 0; i <= temporal_index; ++i) { |
| 355 | int64_t frame_id = last_shared_frame_id_[/*spatial index*/ 0][i]; |
| 356 | |
| 357 | if (frame_id != -1) { |
| 358 | RTC_DCHECK_LT(frame_id, shared_frame_id); |
| 359 | generic.dependencies.push_back(frame_id); |
| 360 | } |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | last_shared_frame_id_[/*spatial_index*/ 0][temporal_index] = shared_frame_id; |
| 365 | } |
| 366 | |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 367 | void RtpPayloadParams::Vp8ToGeneric(const CodecSpecificInfoVP8& vp8_info, |
| 368 | int64_t shared_frame_id, |
philipel | bf2b620 | 2018-08-27 14:33:18 +0200 | [diff] [blame] | 369 | bool is_keyframe, |
| 370 | RTPVideoHeader* rtp_video_header) { |
| 371 | const auto& vp8_header = |
| 372 | absl::get<RTPVideoHeaderVP8>(rtp_video_header->video_type_header); |
| 373 | const int spatial_index = 0; |
| 374 | const int temporal_index = |
| 375 | vp8_header.temporalIdx != kNoTemporalIdx ? vp8_header.temporalIdx : 0; |
| 376 | |
| 377 | if (temporal_index >= RtpGenericFrameDescriptor::kMaxTemporalLayers || |
| 378 | spatial_index >= RtpGenericFrameDescriptor::kMaxSpatialLayers) { |
| 379 | RTC_LOG(LS_WARNING) << "Temporal and/or spatial index is too high to be " |
| 380 | "used with generic frame descriptor."; |
| 381 | return; |
| 382 | } |
| 383 | |
| 384 | RTPVideoHeader::GenericDescriptorInfo& generic = |
| 385 | rtp_video_header->generic.emplace(); |
| 386 | |
| 387 | generic.frame_id = shared_frame_id; |
| 388 | generic.spatial_index = spatial_index; |
| 389 | generic.temporal_index = temporal_index; |
| 390 | |
Qingsi Wang | 1c1b99e | 2020-01-07 19:16:33 +0000 | [diff] [blame] | 391 | if (vp8_info.useExplicitDependencies) { |
| 392 | SetDependenciesVp8New(vp8_info, shared_frame_id, is_keyframe, |
| 393 | vp8_header.layerSync, &generic); |
| 394 | } else { |
| 395 | SetDependenciesVp8Deprecated(vp8_info, shared_frame_id, is_keyframe, |
| 396 | spatial_index, temporal_index, |
| 397 | vp8_header.layerSync, &generic); |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | void RtpPayloadParams::SetDependenciesVp8Deprecated( |
| 402 | const CodecSpecificInfoVP8& vp8_info, |
| 403 | int64_t shared_frame_id, |
| 404 | bool is_keyframe, |
| 405 | int spatial_index, |
| 406 | int temporal_index, |
| 407 | bool layer_sync, |
| 408 | RTPVideoHeader::GenericDescriptorInfo* generic) { |
| 409 | RTC_DCHECK(!vp8_info.useExplicitDependencies); |
| 410 | RTC_DCHECK(!new_version_used_.has_value() || !new_version_used_.value()); |
| 411 | new_version_used_ = false; |
| 412 | |
| 413 | if (is_keyframe) { |
| 414 | RTC_DCHECK_EQ(temporal_index, 0); |
| 415 | last_shared_frame_id_[spatial_index].fill(-1); |
| 416 | last_shared_frame_id_[spatial_index][temporal_index] = shared_frame_id; |
| 417 | return; |
| 418 | } |
| 419 | |
| 420 | if (layer_sync) { |
| 421 | int64_t tl0_frame_id = last_shared_frame_id_[spatial_index][0]; |
| 422 | |
| 423 | for (int i = 1; i < RtpGenericFrameDescriptor::kMaxTemporalLayers; ++i) { |
| 424 | if (last_shared_frame_id_[spatial_index][i] < tl0_frame_id) { |
| 425 | last_shared_frame_id_[spatial_index][i] = -1; |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | RTC_DCHECK_GE(tl0_frame_id, 0); |
| 430 | RTC_DCHECK_LT(tl0_frame_id, shared_frame_id); |
| 431 | generic->dependencies.push_back(tl0_frame_id); |
| 432 | } else { |
| 433 | for (int i = 0; i <= temporal_index; ++i) { |
| 434 | int64_t frame_id = last_shared_frame_id_[spatial_index][i]; |
| 435 | |
| 436 | if (frame_id != -1) { |
| 437 | RTC_DCHECK_LT(frame_id, shared_frame_id); |
| 438 | generic->dependencies.push_back(frame_id); |
| 439 | } |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | last_shared_frame_id_[spatial_index][temporal_index] = shared_frame_id; |
| 444 | } |
| 445 | |
| 446 | void RtpPayloadParams::SetDependenciesVp8New( |
| 447 | const CodecSpecificInfoVP8& vp8_info, |
| 448 | int64_t shared_frame_id, |
| 449 | bool is_keyframe, |
| 450 | bool layer_sync, |
| 451 | RTPVideoHeader::GenericDescriptorInfo* generic) { |
| 452 | RTC_DCHECK(vp8_info.useExplicitDependencies); |
| 453 | RTC_DCHECK(!new_version_used_.has_value() || new_version_used_.value()); |
| 454 | new_version_used_ = true; |
| 455 | |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 456 | if (is_keyframe) { |
| 457 | RTC_DCHECK_EQ(vp8_info.referencedBuffersCount, 0u); |
| 458 | buffer_id_to_frame_id_.fill(shared_frame_id); |
| 459 | return; |
| 460 | } |
| 461 | |
| 462 | constexpr size_t kBuffersCountVp8 = CodecSpecificInfoVP8::kBuffersCount; |
| 463 | |
| 464 | RTC_DCHECK_GT(vp8_info.referencedBuffersCount, 0u); |
| 465 | RTC_DCHECK_LE(vp8_info.referencedBuffersCount, |
| 466 | arraysize(vp8_info.referencedBuffers)); |
| 467 | |
| 468 | for (size_t i = 0; i < vp8_info.referencedBuffersCount; ++i) { |
| 469 | const size_t referenced_buffer = vp8_info.referencedBuffers[i]; |
| 470 | RTC_DCHECK_LT(referenced_buffer, kBuffersCountVp8); |
| 471 | RTC_DCHECK_LT(referenced_buffer, buffer_id_to_frame_id_.size()); |
| 472 | |
| 473 | const int64_t dependency_frame_id = |
| 474 | buffer_id_to_frame_id_[referenced_buffer]; |
| 475 | RTC_DCHECK_GE(dependency_frame_id, 0); |
| 476 | RTC_DCHECK_LT(dependency_frame_id, shared_frame_id); |
| 477 | |
| 478 | const bool is_new_dependency = |
Qingsi Wang | 1c1b99e | 2020-01-07 19:16:33 +0000 | [diff] [blame] | 479 | std::find(generic->dependencies.begin(), generic->dependencies.end(), |
| 480 | dependency_frame_id) == generic->dependencies.end(); |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 481 | if (is_new_dependency) { |
Qingsi Wang | 1c1b99e | 2020-01-07 19:16:33 +0000 | [diff] [blame] | 482 | generic->dependencies.push_back(dependency_frame_id); |
Elad Alon | f5b216a | 2019-01-28 14:25:17 +0100 | [diff] [blame] | 483 | } |
| 484 | } |
| 485 | |
| 486 | RTC_DCHECK_LE(vp8_info.updatedBuffersCount, kBuffersCountVp8); |
| 487 | for (size_t i = 0; i < vp8_info.updatedBuffersCount; ++i) { |
| 488 | const size_t updated_id = vp8_info.updatedBuffers[i]; |
| 489 | buffer_id_to_frame_id_[updated_id] = shared_frame_id; |
| 490 | } |
| 491 | |
| 492 | RTC_DCHECK_LE(buffer_id_to_frame_id_.size(), kBuffersCountVp8); |
| 493 | } |
| 494 | |
Stefan Holmer | f704468 | 2018-07-17 10:16:41 +0200 | [diff] [blame] | 495 | } // namespace webrtc |