blob: da53cbc5c410cbb98d84a4e6c11ebd9b3c70ae83 [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
Danil Chapovalov748550d2021-04-29 09:42:5445 // 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 Holmerf7044682018-07-17 08:16:4153 uint32_t ssrc() const;
54
55 RtpPayloadState state() const;
56
57 private:
philipelbf2b6202018-08-27 12:33:1858 void SetCodecSpecific(RTPVideoHeader* rtp_video_header,
59 bool first_frame_in_picture);
Danil Chapovalov02d71fb2020-02-10 15:22:5760 RTPVideoHeader::GenericDescriptorInfo GenericDescriptorFromFrameInfo(
61 const GenericFrameInfo& frame_info,
Danil Chapovalovcf1308f2020-11-18 17:27:3762 int64_t frame_id);
Elad Alonf5b216a2019-01-28 13:25:1763 void SetGeneric(const CodecSpecificInfo* codec_specific_info,
64 int64_t frame_id,
philipelbf2b6202018-08-27 12:33:1865 bool is_keyframe,
66 RTPVideoHeader* rtp_video_header);
Stefan Holmerf7044682018-07-17 08:16:4167
Elad Alonf5b216a2019-01-28 13:25:1768 void Vp8ToGeneric(const CodecSpecificInfoVP8& vp8_info,
69 int64_t shared_frame_id,
philipelbf2b6202018-08-27 12:33:1870 bool is_keyframe,
71 RTPVideoHeader* rtp_video_header);
72
Danil Chapovalovaf366442021-04-22 13:20:2873 void Vp9ToGeneric(const CodecSpecificInfoVP9& vp9_info,
74 int64_t shared_frame_id,
75 RTPVideoHeader& rtp_video_header);
76
philipel8aba8fe2019-06-13 13:13:1677 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 Wang1c1b99e2020-01-07 19:16:3386 // 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 Chapovalov02d71fb2020-02-10 15:22:57103 FrameDependenciesCalculator dependencies_calculator_;
Danil Chapovalov4b860c12020-05-19 12:48:19104 ChainDiffCalculator chains_calculator_;
Elad Alonf5b216a2019-01-28 13:25:17105 // TODO(bugs.webrtc.org/10242): Remove once all encoder-wrappers are updated.
philipelbf2b6202018-08-27 12:33:18106 // 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 Chapovalovaf366442021-04-22 13:20:28110 // 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 Alonf5b216a2019-01-28 13:25:17117
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 Wang1c1b99e2020-01-07 19:16:33126 // 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 Holmerf7044682018-07-17 08:16:41132 const uint32_t ssrc_;
133 RtpPayloadState state_;
philipelbf2b6202018-08-27 12:33:18134
135 const bool generic_picture_id_experiment_;
Danil Chapovalovaf366442021-04-22 13:20:28136 const bool simulate_generic_vp9_;
Stefan Holmerf7044682018-07-17 08:16:41137};
138} // namespace webrtc
139#endif // CALL_RTP_PAYLOAD_PARAMS_H_