Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [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 | #ifndef CALL_RTP_PAYLOAD_PARAMS_H_ |
| 12 | #define CALL_RTP_PAYLOAD_PARAMS_H_ |
| 13 | |
Elad Alon | f5b216a | 2019-01-28 13:25:17 | [diff] [blame] | 14 | #include <array> |
Danil Chapovalov | af36644 | 2021-04-22 13:20:28 | [diff] [blame] | 15 | #include <vector> |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 16 | |
Elad Alon | f5b216a | 2019-01-28 13:25:17 | [diff] [blame] | 17 | #include "absl/types/optional.h" |
Erik Språng | cbc0cba | 2020-04-18 12:36:59 | [diff] [blame] | 18 | #include "api/transport/webrtc_key_value_config.h" |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 19 | #include "api/video_codecs/video_encoder.h" |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 20 | #include "call/rtp_config.h" |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 21 | #include "modules/rtp_rtcp/source/rtp_generic_frame_descriptor.h" |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 22 | #include "modules/rtp_rtcp/source/rtp_video_header.h" |
Danil Chapovalov | 4b860c1 | 2020-05-19 12:48:19 | [diff] [blame] | 23 | #include "modules/video_coding/chain_diff_calculator.h" |
Danil Chapovalov | 02d71fb | 2020-02-10 15:22:57 | [diff] [blame] | 24 | #include "modules/video_coding/frame_dependencies_calculator.h" |
Elad Alon | f5b216a | 2019-01-28 13:25:17 | [diff] [blame] | 25 | #include "modules/video_coding/include/video_codec_interface.h" |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 26 | |
| 27 | namespace webrtc { |
| 28 | |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 29 | class RtpRtcp; |
| 30 | |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 31 | // State for setting picture id and tl0 pic idx, for VP8 and VP9 |
| 32 | // TODO(nisse): Make these properties not codec specific. |
| 33 | class RtpPayloadParams final { |
| 34 | public: |
Erik Språng | cbc0cba | 2020-04-18 12:36:59 | [diff] [blame] | 35 | RtpPayloadParams(const uint32_t ssrc, |
| 36 | const RtpPayloadState* state, |
| 37 | const WebRtcKeyValueConfig& trials); |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 38 | RtpPayloadParams(const RtpPayloadParams& other); |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 39 | ~RtpPayloadParams(); |
| 40 | |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 41 | RTPVideoHeader GetRtpVideoHeader(const EncodedImage& image, |
| 42 | const CodecSpecificInfo* codec_specific_info, |
| 43 | int64_t shared_frame_id); |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 44 | |
Danil Chapovalov | 748550d | 2021-04-29 09:42:54 | [diff] [blame] | 45 | // Returns structure that aligns with simulated generic info for VP9. |
| 46 | // The templates allow to produce valid dependency descriptor for any vp9 |
| 47 | // stream with up to 4 temporal layers. The set of the templates is not tuned |
| 48 | // for any paricular structure thus dependency descriptor would use more bytes |
| 49 | // on the wire than with tuned templates. |
| 50 | static FrameDependencyStructure MinimalisticVp9Structure( |
| 51 | const CodecSpecificInfoVP9& vp9); |
| 52 | |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 53 | uint32_t ssrc() const; |
| 54 | |
| 55 | RtpPayloadState state() const; |
| 56 | |
| 57 | private: |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 58 | void SetCodecSpecific(RTPVideoHeader* rtp_video_header, |
| 59 | bool first_frame_in_picture); |
Danil Chapovalov | 02d71fb | 2020-02-10 15:22:57 | [diff] [blame] | 60 | RTPVideoHeader::GenericDescriptorInfo GenericDescriptorFromFrameInfo( |
| 61 | const GenericFrameInfo& frame_info, |
Danil Chapovalov | cf1308f | 2020-11-18 17:27:37 | [diff] [blame] | 62 | int64_t frame_id); |
Elad Alon | f5b216a | 2019-01-28 13:25:17 | [diff] [blame] | 63 | void SetGeneric(const CodecSpecificInfo* codec_specific_info, |
| 64 | int64_t frame_id, |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 65 | bool is_keyframe, |
| 66 | RTPVideoHeader* rtp_video_header); |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 67 | |
Elad Alon | f5b216a | 2019-01-28 13:25:17 | [diff] [blame] | 68 | void Vp8ToGeneric(const CodecSpecificInfoVP8& vp8_info, |
| 69 | int64_t shared_frame_id, |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 70 | bool is_keyframe, |
| 71 | RTPVideoHeader* rtp_video_header); |
| 72 | |
Danil Chapovalov | af36644 | 2021-04-22 13:20:28 | [diff] [blame] | 73 | void Vp9ToGeneric(const CodecSpecificInfoVP9& vp9_info, |
| 74 | int64_t shared_frame_id, |
| 75 | RTPVideoHeader& rtp_video_header); |
| 76 | |
philipel | 8aba8fe | 2019-06-13 13:13:16 | [diff] [blame] | 77 | void H264ToGeneric(const CodecSpecificInfoH264& h264_info, |
| 78 | int64_t shared_frame_id, |
| 79 | bool is_keyframe, |
| 80 | RTPVideoHeader* rtp_video_header); |
| 81 | |
| 82 | void GenericToGeneric(int64_t shared_frame_id, |
| 83 | bool is_keyframe, |
| 84 | RTPVideoHeader* rtp_video_header); |
| 85 | |
Qingsi Wang | 1c1b99e | 2020-01-07 19:16:33 | [diff] [blame] | 86 | // TODO(bugs.webrtc.org/10242): Delete SetDependenciesVp8Deprecated() and move |
| 87 | // the logic in SetDependenciesVp8New() into Vp8ToGeneric() once all hardware |
| 88 | // wrappers have been updated. |
| 89 | void SetDependenciesVp8Deprecated( |
| 90 | const CodecSpecificInfoVP8& vp8_info, |
| 91 | int64_t shared_frame_id, |
| 92 | bool is_keyframe, |
| 93 | int spatial_index, |
| 94 | int temporal_index, |
| 95 | bool layer_sync, |
| 96 | RTPVideoHeader::GenericDescriptorInfo* generic); |
| 97 | void SetDependenciesVp8New(const CodecSpecificInfoVP8& vp8_info, |
| 98 | int64_t shared_frame_id, |
| 99 | bool is_keyframe, |
| 100 | bool layer_sync, |
| 101 | RTPVideoHeader::GenericDescriptorInfo* generic); |
| 102 | |
Danil Chapovalov | 02d71fb | 2020-02-10 15:22:57 | [diff] [blame] | 103 | FrameDependenciesCalculator dependencies_calculator_; |
Danil Chapovalov | 4b860c1 | 2020-05-19 12:48:19 | [diff] [blame] | 104 | ChainDiffCalculator chains_calculator_; |
Elad Alon | f5b216a | 2019-01-28 13:25:17 | [diff] [blame] | 105 | // TODO(bugs.webrtc.org/10242): Remove once all encoder-wrappers are updated. |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 106 | // Holds the last shared frame id for a given (spatial, temporal) layer. |
| 107 | std::array<std::array<int64_t, RtpGenericFrameDescriptor::kMaxTemporalLayers>, |
| 108 | RtpGenericFrameDescriptor::kMaxSpatialLayers> |
| 109 | last_shared_frame_id_; |
Danil Chapovalov | af36644 | 2021-04-22 13:20:28 | [diff] [blame] | 110 | // circular buffer of frame ids for the last 128 vp9 pictures. |
| 111 | // ids for the `picture_id` are stored at the index `picture_id % 128`. |
| 112 | std::vector<std::array<int64_t, RtpGenericFrameDescriptor::kMaxSpatialLayers>> |
| 113 | last_vp9_frame_id_; |
| 114 | // Last frame id for each chain |
| 115 | std::array<int64_t, RtpGenericFrameDescriptor::kMaxSpatialLayers> |
| 116 | chain_last_frame_id_; |
Elad Alon | f5b216a | 2019-01-28 13:25:17 | [diff] [blame] | 117 | |
| 118 | // TODO(eladalon): When additional codecs are supported, |
| 119 | // set kMaxCodecBuffersCount to the max() of these codecs' buffer count. |
| 120 | static constexpr size_t kMaxCodecBuffersCount = |
| 121 | CodecSpecificInfoVP8::kBuffersCount; |
| 122 | |
| 123 | // Maps buffer IDs to the frame-ID stored in them. |
| 124 | std::array<int64_t, kMaxCodecBuffersCount> buffer_id_to_frame_id_; |
| 125 | |
Qingsi Wang | 1c1b99e | 2020-01-07 19:16:33 | [diff] [blame] | 126 | // Until we remove SetDependenciesVp8Deprecated(), we should make sure |
| 127 | // that, for a given object, we either always use |
| 128 | // SetDependenciesVp8Deprecated(), or always use SetDependenciesVp8New(). |
| 129 | // TODO(bugs.webrtc.org/10242): Remove. |
| 130 | absl::optional<bool> new_version_used_; |
| 131 | |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 132 | const uint32_t ssrc_; |
| 133 | RtpPayloadState state_; |
philipel | bf2b620 | 2018-08-27 12:33:18 | [diff] [blame] | 134 | |
| 135 | const bool generic_picture_id_experiment_; |
Danil Chapovalov | af36644 | 2021-04-22 13:20:28 | [diff] [blame] | 136 | const bool simulate_generic_vp9_; |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 137 | }; |
| 138 | } // namespace webrtc |
| 139 | #endif // CALL_RTP_PAYLOAD_PARAMS_H_ |