niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 1 | /* |
phoglund@webrtc.org | 8bfee84 | 2012-02-17 09:32:48 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [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 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 11 | #ifndef COMMON_TYPES_H_ |
| 12 | #define COMMON_TYPES_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 13 | |
pbos@webrtc.org | f577ae9 | 2014-03-19 08:43:57 | [diff] [blame] | 14 | #include <stddef.h> |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 15 | #include <string.h> |
pbos@webrtc.org | 1e92b0a | 2014-05-15 09:35:06 | [diff] [blame] | 16 | #include <string> |
pbos@webrtc.org | f577ae9 | 2014-03-19 08:43:57 | [diff] [blame] | 17 | #include <vector> |
| 18 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 19 | #include "api/array_view.h" |
Erik Språng | 566124a | 2018-04-23 10:32:22 | [diff] [blame] | 20 | // TODO(sprang): Remove this include when all usage includes it directly. |
| 21 | #include "api/video/video_bitrate_allocation.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 22 | #include "rtc_base/checks.h" |
| 23 | #include "rtc_base/deprecation.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 24 | |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 25 | #if defined(_MSC_VER) |
| 26 | // Disable "new behavior: elements of array will be default initialized" |
| 27 | // warning. Affects OverUseDetectorOptions. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 28 | #pragma warning(disable : 4351) |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 29 | #endif |
| 30 | |
Peter Boström | 8b79b07 | 2016-02-26 15:31:37 | [diff] [blame] | 31 | #define RTP_PAYLOAD_NAME_SIZE 32u |
henrika@webrtc.org | f75901f | 2012-01-16 08:45:42 | [diff] [blame] | 32 | |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 33 | #if defined(WEBRTC_WIN) || defined(WIN32) |
andrew@webrtc.org | eda189b | 2013-09-09 17:50:10 | [diff] [blame] | 34 | // Compares two strings without regard to case. |
| 35 | #define STR_CASE_CMP(s1, s2) ::_stricmp(s1, s2) |
| 36 | // Compares characters of two strings without regard to case. |
| 37 | #define STR_NCASE_CMP(s1, s2, n) ::_strnicmp(s1, s2, n) |
| 38 | #else |
| 39 | #define STR_CASE_CMP(s1, s2) ::strcasecmp(s1, s2) |
| 40 | #define STR_NCASE_CMP(s1, s2, n) ::strncasecmp(s1, s2, n) |
| 41 | #endif |
| 42 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 43 | namespace webrtc { |
| 44 | |
pbos | 22993e1 | 2015-10-19 09:39:06 | [diff] [blame] | 45 | enum FrameType { |
| 46 | kEmptyFrame = 0, |
| 47 | kAudioFrameSpeech = 1, |
| 48 | kAudioFrameCN = 2, |
| 49 | kVideoFrameKey = 3, |
| 50 | kVideoFrameDelta = 4, |
sprang@webrtc.org | 71f055f | 2013-12-04 15:09:27 | [diff] [blame] | 51 | }; |
| 52 | |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 53 | // Statistics for an RTCP channel |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 54 | struct RtcpStatistics { |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 55 | RtcpStatistics() |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 56 | : fraction_lost(0), |
srte | 186d9c3 | 2017-08-04 12:03:53 | [diff] [blame] | 57 | packets_lost(0), |
| 58 | extended_highest_sequence_number(0), |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 59 | jitter(0) {} |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 60 | |
| 61 | uint8_t fraction_lost; |
srte | 186d9c3 | 2017-08-04 12:03:53 | [diff] [blame] | 62 | union { |
Harald Alvestrand | c7c4191 | 2017-12-08 08:59:34 | [diff] [blame] | 63 | int32_t packets_lost; // Defined as a 24 bit signed integer in RTCP |
srte | 186d9c3 | 2017-08-04 12:03:53 | [diff] [blame] | 64 | RTC_DEPRECATED uint32_t cumulative_lost; |
| 65 | }; |
| 66 | union { |
| 67 | uint32_t extended_highest_sequence_number; |
| 68 | RTC_DEPRECATED uint32_t extended_max_sequence_number; |
| 69 | }; |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 70 | uint32_t jitter; |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 71 | }; |
| 72 | |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 73 | class RtcpStatisticsCallback { |
| 74 | public: |
| 75 | virtual ~RtcpStatisticsCallback() {} |
| 76 | |
| 77 | virtual void StatisticsUpdated(const RtcpStatistics& statistics, |
| 78 | uint32_t ssrc) = 0; |
pbos@webrtc.org | ce4e9a3 | 2014-12-18 13:50:16 | [diff] [blame] | 79 | virtual void CNameChanged(const char* cname, uint32_t ssrc) = 0; |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 80 | }; |
| 81 | |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 | [diff] [blame] | 82 | // Statistics for RTCP packet types. |
| 83 | struct RtcpPacketTypeCounter { |
| 84 | RtcpPacketTypeCounter() |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 85 | : first_packet_time_ms(-1), |
| 86 | nack_packets(0), |
| 87 | fir_packets(0), |
| 88 | pli_packets(0), |
| 89 | nack_requests(0), |
| 90 | unique_nack_requests(0) {} |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 | [diff] [blame] | 91 | |
| 92 | void Add(const RtcpPacketTypeCounter& other) { |
| 93 | nack_packets += other.nack_packets; |
| 94 | fir_packets += other.fir_packets; |
| 95 | pli_packets += other.pli_packets; |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 96 | nack_requests += other.nack_requests; |
| 97 | unique_nack_requests += other.unique_nack_requests; |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 98 | if (other.first_packet_time_ms != -1 && |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 99 | (other.first_packet_time_ms < first_packet_time_ms || |
| 100 | first_packet_time_ms == -1)) { |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 101 | // Use oldest time. |
| 102 | first_packet_time_ms = other.first_packet_time_ms; |
| 103 | } |
| 104 | } |
| 105 | |
sprang | 07fb9be | 2016-02-24 15:55:00 | [diff] [blame] | 106 | void Subtract(const RtcpPacketTypeCounter& other) { |
| 107 | nack_packets -= other.nack_packets; |
| 108 | fir_packets -= other.fir_packets; |
| 109 | pli_packets -= other.pli_packets; |
| 110 | nack_requests -= other.nack_requests; |
| 111 | unique_nack_requests -= other.unique_nack_requests; |
| 112 | if (other.first_packet_time_ms != -1 && |
| 113 | (other.first_packet_time_ms > first_packet_time_ms || |
| 114 | first_packet_time_ms == -1)) { |
| 115 | // Use youngest time. |
| 116 | first_packet_time_ms = other.first_packet_time_ms; |
| 117 | } |
| 118 | } |
| 119 | |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 120 | int64_t TimeSinceFirstPacketInMs(int64_t now_ms) const { |
| 121 | return (first_packet_time_ms == -1) ? -1 : (now_ms - first_packet_time_ms); |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 | [diff] [blame] | 122 | } |
| 123 | |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 124 | int UniqueNackRequestsInPercent() const { |
| 125 | if (nack_requests == 0) { |
| 126 | return 0; |
| 127 | } |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 128 | return static_cast<int>((unique_nack_requests * 100.0f / nack_requests) + |
| 129 | 0.5f); |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 130 | } |
| 131 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 132 | int64_t first_packet_time_ms; // Time when first packet is sent/received. |
| 133 | uint32_t nack_packets; // Number of RTCP NACK packets. |
| 134 | uint32_t fir_packets; // Number of RTCP FIR packets. |
| 135 | uint32_t pli_packets; // Number of RTCP PLI packets. |
| 136 | uint32_t nack_requests; // Number of NACKed RTP packets. |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 137 | uint32_t unique_nack_requests; // Number of unique NACKed RTP packets. |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 | [diff] [blame] | 138 | }; |
| 139 | |
pbos@webrtc.org | 1d0fa5d | 2015-02-19 12:47:00 | [diff] [blame] | 140 | class RtcpPacketTypeCounterObserver { |
| 141 | public: |
| 142 | virtual ~RtcpPacketTypeCounterObserver() {} |
| 143 | virtual void RtcpPacketTypesCounterUpdated( |
| 144 | uint32_t ssrc, |
| 145 | const RtcpPacketTypeCounter& packet_counter) = 0; |
| 146 | }; |
| 147 | |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 148 | // Callback, used to notify an observer whenever new rates have been estimated. |
| 149 | class BitrateStatisticsObserver { |
| 150 | public: |
| 151 | virtual ~BitrateStatisticsObserver() {} |
| 152 | |
sprang | cd349d9 | 2016-07-13 16:11:28 | [diff] [blame] | 153 | virtual void Notify(uint32_t total_bitrate_bps, |
| 154 | uint32_t retransmit_bitrate_bps, |
stefan@webrtc.org | 0bae1fa | 2014-11-05 14:05:29 | [diff] [blame] | 155 | uint32_t ssrc) = 0; |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 156 | }; |
| 157 | |
pbos@webrtc.org | ce4e9a3 | 2014-12-18 13:50:16 | [diff] [blame] | 158 | struct FrameCounts { |
| 159 | FrameCounts() : key_frames(0), delta_frames(0) {} |
| 160 | int key_frames; |
| 161 | int delta_frames; |
| 162 | }; |
| 163 | |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 164 | // Callback, used to notify an observer whenever frame counts have been updated. |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 165 | class FrameCountObserver { |
| 166 | public: |
sprang@webrtc.org | 72964bd | 2013-11-21 09:09:54 | [diff] [blame] | 167 | virtual ~FrameCountObserver() {} |
pbos@webrtc.org | ce4e9a3 | 2014-12-18 13:50:16 | [diff] [blame] | 168 | virtual void FrameCountUpdated(const FrameCounts& frame_counts, |
| 169 | uint32_t ssrc) = 0; |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 170 | }; |
| 171 | |
stefan@webrtc.org | 168f23f | 2014-07-11 13:44:02 | [diff] [blame] | 172 | // Callback, used to notify an observer whenever the send-side delay is updated. |
| 173 | class SendSideDelayObserver { |
| 174 | public: |
| 175 | virtual ~SendSideDelayObserver() {} |
| 176 | virtual void SendSideDelayUpdated(int avg_delay_ms, |
| 177 | int max_delay_ms, |
| 178 | uint32_t ssrc) = 0; |
| 179 | }; |
| 180 | |
asapersson | 35151f3 | 2016-05-03 06:44:01 | [diff] [blame] | 181 | // Callback, used to notify an observer whenever a packet is sent to the |
| 182 | // transport. |
| 183 | // TODO(asapersson): This class will remove the need for SendSideDelayObserver. |
| 184 | // Remove SendSideDelayObserver once possible. |
| 185 | class SendPacketObserver { |
| 186 | public: |
| 187 | virtual ~SendPacketObserver() {} |
| 188 | virtual void OnSendPacket(uint16_t packet_id, |
| 189 | int64_t capture_time_ms, |
| 190 | uint32_t ssrc) = 0; |
| 191 | }; |
| 192 | |
michaelt | 4da3044 | 2016-11-17 09:38:43 | [diff] [blame] | 193 | // Callback, used to notify an observer when the overhead per packet |
| 194 | // has changed. |
| 195 | class OverheadObserver { |
| 196 | public: |
| 197 | virtual ~OverheadObserver() = default; |
| 198 | virtual void OnOverheadChanged(size_t overhead_bytes_per_packet) = 0; |
| 199 | }; |
| 200 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 201 | // ================================================================== |
| 202 | // Voice specific types |
| 203 | // ================================================================== |
| 204 | |
| 205 | // Each codec supported can be described by this structure. |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 206 | struct CodecInst { |
| 207 | int pltype; |
| 208 | char plname[RTP_PAYLOAD_NAME_SIZE]; |
| 209 | int plfreq; |
| 210 | int pacsize; |
Peter Kasting | 6955870 | 2016-01-13 00:26:35 | [diff] [blame] | 211 | size_t channels; |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 212 | int rate; // bits/sec unlike {start,min,max}Bitrate elsewhere in this file! |
| 213 | |
| 214 | bool operator==(const CodecInst& other) const { |
| 215 | return pltype == other.pltype && |
| 216 | (STR_CASE_CMP(plname, other.plname) == 0) && |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 217 | plfreq == other.plfreq && pacsize == other.pacsize && |
| 218 | channels == other.channels && rate == other.rate; |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 219 | } |
| 220 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 221 | bool operator!=(const CodecInst& other) const { return !(*this == other); } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 222 | }; |
| 223 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 224 | // RTP |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 225 | enum { kRtpCsrcSize = 15 }; // RFC 3550 page 13 |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 226 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 227 | // NETEQ statistics. |
| 228 | struct NetworkStatistics { |
| 229 | // current jitter buffer size in ms |
| 230 | uint16_t currentBufferSize; |
| 231 | // preferred (optimal) buffer size in ms |
| 232 | uint16_t preferredBufferSize; |
| 233 | // adding extra delay due to "peaky jitter" |
| 234 | bool jitterPeaksFound; |
Gustaf Ullberg | b0a0207 | 2017-10-02 10:00:34 | [diff] [blame] | 235 | // Stats below correspond to similarly-named fields in the WebRTC stats spec. |
| 236 | // https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats |
Steve Anton | 2dbc69f | 2017-08-25 00:15:13 | [diff] [blame] | 237 | uint64_t totalSamplesReceived; |
Steve Anton | 2dbc69f | 2017-08-25 00:15:13 | [diff] [blame] | 238 | uint64_t concealedSamples; |
Gustaf Ullberg | 9a2e906 | 2017-09-18 07:28:20 | [diff] [blame] | 239 | uint64_t concealmentEvents; |
Gustaf Ullberg | b0a0207 | 2017-10-02 10:00:34 | [diff] [blame] | 240 | uint64_t jitterBufferDelayMs; |
| 241 | // Stats below DO NOT correspond directly to anything in the WebRTC stats |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 242 | // Loss rate (network + late); fraction between 0 and 1, scaled to Q14. |
| 243 | uint16_t currentPacketLossRate; |
| 244 | // Late loss rate; fraction between 0 and 1, scaled to Q14. |
minyue-webrtc | 0c3ca75 | 2017-08-23 13:59:38 | [diff] [blame] | 245 | union { |
| 246 | RTC_DEPRECATED uint16_t currentDiscardRate; |
| 247 | }; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 248 | // fraction (of original stream) of synthesized audio inserted through |
| 249 | // expansion (in Q14) |
| 250 | uint16_t currentExpandRate; |
| 251 | // fraction (of original stream) of synthesized speech inserted through |
| 252 | // expansion (in Q14) |
| 253 | uint16_t currentSpeechExpandRate; |
| 254 | // fraction of synthesized speech inserted through pre-emptive expansion |
| 255 | // (in Q14) |
| 256 | uint16_t currentPreemptiveRate; |
| 257 | // fraction of data removed through acceleration (in Q14) |
| 258 | uint16_t currentAccelerateRate; |
| 259 | // fraction of data coming from secondary decoding (in Q14) |
| 260 | uint16_t currentSecondaryDecodedRate; |
minyue-webrtc | 0e320ec | 2017-08-28 11:51:27 | [diff] [blame] | 261 | // Fraction of secondary data, including FEC and RED, that is discarded (in |
| 262 | // Q14). Discarding of secondary data can be caused by the reception of the |
| 263 | // primary data, obsoleting the secondary data. It can also be caused by early |
| 264 | // or late arrival of secondary data. |
minyue-webrtc | 0c3ca75 | 2017-08-23 13:59:38 | [diff] [blame] | 265 | uint16_t currentSecondaryDiscardedRate; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 266 | // clock-drift in parts-per-million (negative or positive) |
| 267 | int32_t clockDriftPPM; |
| 268 | // average packet waiting time in the jitter buffer (ms) |
| 269 | int meanWaitingTimeMs; |
| 270 | // median packet waiting time in the jitter buffer (ms) |
| 271 | int medianWaitingTimeMs; |
| 272 | // min packet waiting time in the jitter buffer (ms) |
| 273 | int minWaitingTimeMs; |
| 274 | // max packet waiting time in the jitter buffer (ms) |
| 275 | int maxWaitingTimeMs; |
| 276 | // added samples in off mode due to packet loss |
| 277 | size_t addedSamples; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 278 | }; |
| 279 | |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 280 | // Statistics for calls to AudioCodingModule::PlayoutData10Ms(). |
| 281 | struct AudioDecodingCallStats { |
| 282 | AudioDecodingCallStats() |
| 283 | : calls_to_silence_generator(0), |
| 284 | calls_to_neteq(0), |
| 285 | decoded_normal(0), |
| 286 | decoded_plc(0), |
| 287 | decoded_cng(0), |
henrik.lundin | 6348978 | 2016-09-20 08:47:12 | [diff] [blame] | 288 | decoded_plc_cng(0), |
| 289 | decoded_muted_output(0) {} |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 290 | |
| 291 | int calls_to_silence_generator; // Number of calls where silence generated, |
| 292 | // and NetEq was disengaged from decoding. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 293 | int calls_to_neteq; // Number of calls to NetEq. |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 294 | int decoded_normal; // Number of calls where audio RTP packet decoded. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 295 | int decoded_plc; // Number of calls resulted in PLC. |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 296 | int decoded_cng; // Number of calls where comfort noise generated due to DTX. |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 297 | int decoded_plc_cng; // Number of calls resulted where PLC faded to CNG. |
henrik.lundin | 6348978 | 2016-09-20 08:47:12 | [diff] [blame] | 298 | int decoded_muted_output; // Number of calls returning a muted state output. |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 299 | }; |
| 300 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 301 | // ================================================================== |
| 302 | // Video specific types |
| 303 | // ================================================================== |
| 304 | |
nisse | eb44b39 | 2017-04-28 14:18:05 | [diff] [blame] | 305 | // TODO(nisse): Delete, and switch to fourcc values everywhere? |
| 306 | // Supported video types. |
| 307 | enum class VideoType { |
| 308 | kUnknown, |
| 309 | kI420, |
| 310 | kIYUV, |
| 311 | kRGB24, |
| 312 | kABGR, |
| 313 | kARGB, |
| 314 | kARGB4444, |
| 315 | kRGB565, |
| 316 | kARGB1555, |
| 317 | kYUY2, |
| 318 | kYV12, |
| 319 | kUYVY, |
| 320 | kMJPEG, |
| 321 | kNV21, |
| 322 | kNV12, |
| 323 | kBGRA, |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 324 | }; |
| 325 | |
magjed | e69a1a9 | 2016-11-25 18:06:31 | [diff] [blame] | 326 | // TODO(magjed): Move this and other H264 related classes out to their own file. |
| 327 | namespace H264 { |
| 328 | |
| 329 | enum Profile { |
| 330 | kProfileConstrainedBaseline, |
| 331 | kProfileBaseline, |
| 332 | kProfileMain, |
| 333 | kProfileConstrainedHigh, |
| 334 | kProfileHigh, |
| 335 | }; |
| 336 | |
| 337 | } // namespace H264 |
| 338 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 339 | // Video codec types |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 340 | enum VideoCodecType { |
Niels Möller | 520ca4e | 2018-06-04 09:14:38 | [diff] [blame] | 341 | // There are various memset(..., 0, ...) calls in the code that rely on |
| 342 | // kVideoCodecUnknown being zero. |
| 343 | kVideoCodecUnknown = 0, |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 344 | kVideoCodecVP8, |
| 345 | kVideoCodecVP9, |
| 346 | kVideoCodecH264, |
| 347 | kVideoCodecI420, |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 348 | kVideoCodecGeneric, |
Emircan Uysaler | d7ae3c3 | 2018-01-25 21:01:09 | [diff] [blame] | 349 | kVideoCodecMultiplex, |
Niels Möller | 520ca4e | 2018-06-04 09:14:38 | [diff] [blame] | 350 | |
| 351 | // TODO(nisse): Deprecated aliases, for code expecting RtpVideoCodecTypes. |
| 352 | kRtpVideoNone = kVideoCodecUnknown, |
| 353 | kRtpVideoGeneric = kVideoCodecGeneric, |
| 354 | kRtpVideoVp8 = kVideoCodecVP8, |
| 355 | kRtpVideoVp9 = kVideoCodecVP9, |
| 356 | kRtpVideoH264 = kVideoCodecH264, |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 357 | }; |
| 358 | |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 359 | // Translates from name of codec to codec type and vice versa. |
kthelgason | 1cdddc9 | 2017-08-24 10:52:48 | [diff] [blame] | 360 | const char* CodecTypeToPayloadString(VideoCodecType type); |
| 361 | VideoCodecType PayloadStringToCodecType(const std::string& name); |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 362 | |
Sergey Silkin | 13e7434 | 2018-03-02 11:28:00 | [diff] [blame] | 363 | struct SpatialLayer { |
Niels Möller | def1ef5 | 2018-03-19 12:48:44 | [diff] [blame] | 364 | bool operator==(const SpatialLayer& other) const; |
| 365 | bool operator!=(const SpatialLayer& other) const { return !(*this == other); } |
| 366 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 367 | unsigned short width; |
| 368 | unsigned short height; |
| 369 | unsigned char numberOfTemporalLayers; |
| 370 | unsigned int maxBitrate; // kilobits/sec. |
| 371 | unsigned int targetBitrate; // kilobits/sec. |
| 372 | unsigned int minBitrate; // kilobits/sec. |
| 373 | unsigned int qpMax; // minimum quality |
Seth Hampson | f6464c9 | 2018-01-17 21:55:14 | [diff] [blame] | 374 | bool active; // encoded and sent. |
pwestin@webrtc.org | 1da1ce0 | 2011-10-13 15:19:55 | [diff] [blame] | 375 | }; |
| 376 | |
Sergey Silkin | 13e7434 | 2018-03-02 11:28:00 | [diff] [blame] | 377 | // Simulcast is when the same stream is encoded multiple times with different |
| 378 | // settings such as resolution. |
| 379 | typedef SpatialLayer SimulcastStream; |
sprang | ce4aef1 | 2015-11-02 15:23:20 | [diff] [blame] | 380 | |
Erik Språng | 566124a | 2018-04-23 10:32:22 | [diff] [blame] | 381 | // TODO(sprang): Remove this when downstream projects have been updated. |
| 382 | using BitrateAllocation = VideoBitrateAllocation; |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 383 | |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 384 | // Bandwidth over-use detector options. These are used to drive |
| 385 | // experimentation with bandwidth estimation parameters. |
| 386 | // See modules/remote_bitrate_estimator/overuse_detector.h |
terelius | 84f83f8 | 2016-12-27 18:43:01 | [diff] [blame] | 387 | // TODO(terelius): This is only used in overuse_estimator.cc, and only in the |
| 388 | // default constructed state. Can we move the relevant variables into that |
| 389 | // class and delete this? See also disabled warning at line 27 |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 390 | struct OverUseDetectorOptions { |
| 391 | OverUseDetectorOptions() |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 392 | : initial_slope(8.0 / 512.0), |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 393 | initial_offset(0), |
| 394 | initial_e(), |
| 395 | initial_process_noise(), |
| 396 | initial_avg_noise(0.0), |
| 397 | initial_var_noise(50) { |
| 398 | initial_e[0][0] = 100; |
| 399 | initial_e[1][1] = 1e-1; |
| 400 | initial_e[0][1] = initial_e[1][0] = 0; |
| 401 | initial_process_noise[0] = 1e-13; |
stefan | 1069cac | 2016-03-10 13:13:21 | [diff] [blame] | 402 | initial_process_noise[1] = 1e-3; |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 403 | } |
| 404 | double initial_slope; |
| 405 | double initial_offset; |
| 406 | double initial_e[2][2]; |
| 407 | double initial_process_noise[2]; |
| 408 | double initial_avg_noise; |
| 409 | double initial_var_noise; |
| 410 | }; |
| 411 | |
Niels Möller | 7008287 | 2018-08-07 09:03:12 | [diff] [blame] | 412 | // TODO(nisse): This struct is phased out, delete as soon as down stream code is |
| 413 | // updated. |
| 414 | |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 | [diff] [blame] | 415 | // This structure will have the information about when packet is actually |
| 416 | // received by socket. |
| 417 | struct PacketTime { |
henrike@webrtc.org | 82d3cb6 | 2014-04-29 17:50:47 | [diff] [blame] | 418 | PacketTime() : timestamp(-1), not_before(-1) {} |
| 419 | PacketTime(int64_t timestamp, int64_t not_before) |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 420 | : timestamp(timestamp), not_before(not_before) {} |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 | [diff] [blame] | 421 | |
henrike@webrtc.org | 82d3cb6 | 2014-04-29 17:50:47 | [diff] [blame] | 422 | int64_t timestamp; // Receive time after socket delivers the data. |
| 423 | int64_t not_before; // Earliest possible time the data could have arrived, |
| 424 | // indicating the potential error in the |timestamp| |
| 425 | // value,in case the system is busy. |
| 426 | // For example, the time of the last select() call. |
| 427 | // If unknown, this value will be set to zero. |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 | [diff] [blame] | 428 | }; |
| 429 | |
isheriff | 6b4b5f3 | 2016-06-08 07:24:21 | [diff] [blame] | 430 | // Minimum and maximum playout delay values from capture to render. |
| 431 | // These are best effort values. |
| 432 | // |
| 433 | // A value < 0 indicates no change from previous valid value. |
| 434 | // |
| 435 | // min = max = 0 indicates that the receiver should try and render |
| 436 | // frame as soon as possible. |
| 437 | // |
| 438 | // min = x, max = y indicates that the receiver is free to adapt |
| 439 | // in the range (x, y) based on network jitter. |
| 440 | // |
| 441 | // Note: Given that this gets embedded in a union, it is up-to the owner to |
| 442 | // initialize these values. |
| 443 | struct PlayoutDelay { |
| 444 | int min_ms; |
| 445 | int max_ms; |
| 446 | }; |
| 447 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 448 | } // namespace webrtc |
andrew@webrtc.org | eda189b | 2013-09-09 17:50:10 | [diff] [blame] | 449 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 450 | #endif // COMMON_TYPES_H_ |