blob: 48b0ec2c61254dd5fb8a62940cd67cc0876e2918 [file] [log] [blame]
Stefan Holmerf7044682018-07-17 08:16:411/*
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 Alonf5b216a2019-01-28 13:25:1714#include <array>
Danil Chapovalovaf366442021-04-22 13:20:2815#include <vector>
Stefan Holmerf7044682018-07-17 08:16:4116
Elad Alonf5b216a2019-01-28 13:25:1717#include "absl/types/optional.h"
Erik Språngcbc0cba2020-04-18 12:36:5918#include "api/transport/webrtc_key_value_config.h"
Stefan Holmerf7044682018-07-17 08:16:4119#include "api/video_codecs/video_encoder.h"
Stefan Holmerdbdb3a02018-07-17 14:03:4620#include "call/rtp_config.h"
philipelbf2b6202018-08-27 12:33:1821#include "modules/rtp_rtcp/source/rtp_generic_frame_descriptor.h"
Stefan Holmerf7044682018-07-17 08:16:4122#include "modules/rtp_rtcp/source/rtp_video_header.h"
Danil Chapovalov4b860c12020-05-19 12:48:1923#include "modules/video_coding/chain_diff_calculator.h"
Danil Chapovalov02d71fb2020-02-10 15:22:5724#include "modules/video_coding/frame_dependencies_calculator.h"
Elad Alonf5b216a2019-01-28 13:25:1725#include "modules/video_coding/include/video_codec_interface.h"
Stefan Holmerf7044682018-07-17 08:16:4126
27namespace webrtc {
28
Stefan Holmerf7044682018-07-17 08:16:4129class RtpRtcp;
30
Stefan Holmerf7044682018-07-17 08:16:4131// State for setting picture id and tl0 pic idx, for VP8 and VP9
32// TODO(nisse): Make these properties not codec specific.
33class RtpPayloadParams final {
34 public:
Erik Språngcbc0cba2020-04-18 12:36:5935 RtpPayloadParams(const uint32_t ssrc,
36 const RtpPayloadState* state,
37 const WebRtcKeyValueConfig& trials);
philipelbf2b6202018-08-27 12:33:1838 RtpPayloadParams(const RtpPayloadParams& other);
Stefan Holmerf7044682018-07-17 08:16:4139 ~RtpPayloadParams();
40
philipelbf2b6202018-08-27 12:33:1841 RTPVideoHeader GetRtpVideoHeader(const EncodedImage& image,
42 const CodecSpecificInfo* codec_specific_info,
43 int64_t shared_frame_id);
Stefan Holmerf7044682018-07-17 08:16:4144
philipel5b231de2021-09-01 13:21:1645 // Returns structure that aligns with simulated generic info. The templates
46 // allow to produce valid dependency descriptor for any stream where
47 // `num_spatial_layers` * `num_temporal_layers` <= 32 (limited by
48 // https://aomediacodec.github.io/av1-rtp-spec/#a82-syntax, see
49 // template_fdiffs()). The set of the templates is not tuned for any paricular
50 // structure thus dependency descriptor would use more bytes on the wire than
51 // with tuned templates.
52 static FrameDependencyStructure MinimalisticStructure(
53 int num_spatial_layers,
54 int num_temporal_layers);
Danil Chapovalov748550d2021-04-29 09:42:5455
Stefan Holmerf7044682018-07-17 08:16:4156 uint32_t ssrc() const;
57
58 RtpPayloadState state() const;
59
60 private:
philipelbf2b6202018-08-27 12:33:1861 void SetCodecSpecific(RTPVideoHeader* rtp_video_header,
62 bool first_frame_in_picture);
Danil Chapovalov02d71fb2020-02-10 15:22:5763 RTPVideoHeader::GenericDescriptorInfo GenericDescriptorFromFrameInfo(
64 const GenericFrameInfo& frame_info,
Danil Chapovalovcf1308f2020-11-18 17:27:3765 int64_t frame_id);
Elad Alonf5b216a2019-01-28 13:25:1766 void SetGeneric(const CodecSpecificInfo* codec_specific_info,
67 int64_t frame_id,
philipelbf2b6202018-08-27 12:33:1868 bool is_keyframe,
69 RTPVideoHeader* rtp_video_header);
Stefan Holmerf7044682018-07-17 08:16:4170
Elad Alonf5b216a2019-01-28 13:25:1771 void Vp8ToGeneric(const CodecSpecificInfoVP8& vp8_info,
72 int64_t shared_frame_id,
philipelbf2b6202018-08-27 12:33:1873 bool is_keyframe,
74 RTPVideoHeader* rtp_video_header);
75
Danil Chapovalovaf366442021-04-22 13:20:2876 void Vp9ToGeneric(const CodecSpecificInfoVP9& vp9_info,
77 int64_t shared_frame_id,
78 RTPVideoHeader& rtp_video_header);
79
philipel8aba8fe2019-06-13 13:13:1680 void H264ToGeneric(const CodecSpecificInfoH264& h264_info,
81 int64_t shared_frame_id,
82 bool is_keyframe,
83 RTPVideoHeader* rtp_video_header);
84
85 void GenericToGeneric(int64_t shared_frame_id,
86 bool is_keyframe,
87 RTPVideoHeader* rtp_video_header);
88
Qingsi Wang1c1b99e2020-01-07 19:16:3389 // TODO(bugs.webrtc.org/10242): Delete SetDependenciesVp8Deprecated() and move
90 // the logic in SetDependenciesVp8New() into Vp8ToGeneric() once all hardware
91 // wrappers have been updated.
92 void SetDependenciesVp8Deprecated(
93 const CodecSpecificInfoVP8& vp8_info,
94 int64_t shared_frame_id,
95 bool is_keyframe,
96 int spatial_index,
97 int temporal_index,
98 bool layer_sync,
99 RTPVideoHeader::GenericDescriptorInfo* generic);
100 void SetDependenciesVp8New(const CodecSpecificInfoVP8& vp8_info,
101 int64_t shared_frame_id,
102 bool is_keyframe,
103 bool layer_sync,
104 RTPVideoHeader::GenericDescriptorInfo* generic);
105
Danil Chapovalov02d71fb2020-02-10 15:22:57106 FrameDependenciesCalculator dependencies_calculator_;
Danil Chapovalov4b860c12020-05-19 12:48:19107 ChainDiffCalculator chains_calculator_;
Elad Alonf5b216a2019-01-28 13:25:17108 // TODO(bugs.webrtc.org/10242): Remove once all encoder-wrappers are updated.
philipelbf2b6202018-08-27 12:33:18109 // Holds the last shared frame id for a given (spatial, temporal) layer.
110 std::array<std::array<int64_t, RtpGenericFrameDescriptor::kMaxTemporalLayers>,
111 RtpGenericFrameDescriptor::kMaxSpatialLayers>
112 last_shared_frame_id_;
Danil Chapovalovaf366442021-04-22 13:20:28113 // circular buffer of frame ids for the last 128 vp9 pictures.
114 // ids for the `picture_id` are stored at the index `picture_id % 128`.
115 std::vector<std::array<int64_t, RtpGenericFrameDescriptor::kMaxSpatialLayers>>
116 last_vp9_frame_id_;
117 // Last frame id for each chain
118 std::array<int64_t, RtpGenericFrameDescriptor::kMaxSpatialLayers>
119 chain_last_frame_id_;
Elad Alonf5b216a2019-01-28 13:25:17120
121 // TODO(eladalon): When additional codecs are supported,
122 // set kMaxCodecBuffersCount to the max() of these codecs' buffer count.
123 static constexpr size_t kMaxCodecBuffersCount =
124 CodecSpecificInfoVP8::kBuffersCount;
125
126 // Maps buffer IDs to the frame-ID stored in them.
127 std::array<int64_t, kMaxCodecBuffersCount> buffer_id_to_frame_id_;
128
Qingsi Wang1c1b99e2020-01-07 19:16:33129 // Until we remove SetDependenciesVp8Deprecated(), we should make sure
130 // that, for a given object, we either always use
131 // SetDependenciesVp8Deprecated(), or always use SetDependenciesVp8New().
132 // TODO(bugs.webrtc.org/10242): Remove.
133 absl::optional<bool> new_version_used_;
134
Stefan Holmerf7044682018-07-17 08:16:41135 const uint32_t ssrc_;
136 RtpPayloadState state_;
philipelbf2b6202018-08-27 12:33:18137
138 const bool generic_picture_id_experiment_;
Stefan Holmerf7044682018-07-17 08:16:41139};
140} // namespace webrtc
141#endif // CALL_RTP_PAYLOAD_PARAMS_H_