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> |
kwiberg | 5bf4e08 | 2016-12-19 14:04:04 | [diff] [blame] | 16 | #include <ostream> |
pbos@webrtc.org | 1e92b0a | 2014-05-15 09:35:06 | [diff] [blame] | 17 | #include <string> |
pbos@webrtc.org | f577ae9 | 2014-03-19 08:43:57 | [diff] [blame] | 18 | #include <vector> |
| 19 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 20 | #include "api/array_view.h" |
| 21 | #include "api/optional.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 22 | #include "rtc_base/checks.h" |
| 23 | #include "rtc_base/deprecation.h" |
Mirko Bonadei | 7120742 | 2017-09-15 11:58:09 | [diff] [blame] | 24 | #include "typedefs.h" // NOLINT(build/include) |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 25 | |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 26 | #if defined(_MSC_VER) |
| 27 | // Disable "new behavior: elements of array will be default initialized" |
| 28 | // warning. Affects OverUseDetectorOptions. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 29 | #pragma warning(disable : 4351) |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 30 | #endif |
| 31 | |
kwiberg | 77eab70 | 2016-09-29 00:42:01 | [diff] [blame] | 32 | #if defined(WEBRTC_EXPORT) |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 33 | #define WEBRTC_DLLEXPORT _declspec(dllexport) |
kwiberg | 77eab70 | 2016-09-29 00:42:01 | [diff] [blame] | 34 | #elif defined(WEBRTC_DLL) |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 35 | #define WEBRTC_DLLEXPORT _declspec(dllimport) |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 36 | #else |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 37 | #define WEBRTC_DLLEXPORT |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 38 | #endif |
| 39 | |
| 40 | #ifndef NULL |
andrew@webrtc.org | 88b8b0d | 2012-08-14 00:05:56 | [diff] [blame] | 41 | #define NULL 0 |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 42 | #endif |
| 43 | |
Peter Boström | 8b79b07 | 2016-02-26 15:31:37 | [diff] [blame] | 44 | #define RTP_PAYLOAD_NAME_SIZE 32u |
henrika@webrtc.org | f75901f | 2012-01-16 08:45:42 | [diff] [blame] | 45 | |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 46 | #if defined(WEBRTC_WIN) || defined(WIN32) |
andrew@webrtc.org | eda189b | 2013-09-09 17:50:10 | [diff] [blame] | 47 | // Compares two strings without regard to case. |
| 48 | #define STR_CASE_CMP(s1, s2) ::_stricmp(s1, s2) |
| 49 | // Compares characters of two strings without regard to case. |
| 50 | #define STR_NCASE_CMP(s1, s2, n) ::_strnicmp(s1, s2, n) |
| 51 | #else |
| 52 | #define STR_CASE_CMP(s1, s2) ::strcasecmp(s1, s2) |
| 53 | #define STR_NCASE_CMP(s1, s2, n) ::strncasecmp(s1, s2, n) |
| 54 | #endif |
| 55 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 56 | namespace webrtc { |
| 57 | |
tommi | a6219cc | 2016-06-15 17:30:14 | [diff] [blame] | 58 | class RewindableStream { |
| 59 | public: |
| 60 | virtual ~RewindableStream() {} |
| 61 | virtual int Rewind() = 0; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 62 | }; |
| 63 | |
tommi | a6219cc | 2016-06-15 17:30:14 | [diff] [blame] | 64 | class InStream : public RewindableStream { |
| 65 | public: |
| 66 | // Reads |len| bytes from file to |buf|. Returns the number of bytes read |
| 67 | // or -1 on error. |
| 68 | virtual int Read(void* buf, size_t len) = 0; |
| 69 | }; |
| 70 | |
| 71 | class OutStream : public RewindableStream { |
| 72 | public: |
| 73 | // Writes |len| bytes from |buf| to file. The actual writing may happen |
| 74 | // some time later. Call Flush() to force a write. |
| 75 | virtual bool Write(const void* buf, size_t len) = 0; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 76 | }; |
| 77 | |
Niels Möller | 4f6b6c2 | 2017-12-01 10:17:32 | [diff] [blame] | 78 | // For the deprecated MediaFile module. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 79 | enum FileFormats { |
| 80 | kFileFormatWavFile = 1, |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 81 | kFileFormatPcm16kHzFile = 7, |
| 82 | kFileFormatPcm8kHzFile = 8, |
Minyue Li | 85a3b6b | 2017-09-01 12:36:33 | [diff] [blame] | 83 | kFileFormatPcm32kHzFile = 9, |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 84 | }; |
| 85 | |
pbos | 22993e1 | 2015-10-19 09:39:06 | [diff] [blame] | 86 | enum FrameType { |
| 87 | kEmptyFrame = 0, |
| 88 | kAudioFrameSpeech = 1, |
| 89 | kAudioFrameCN = 2, |
| 90 | kVideoFrameKey = 3, |
| 91 | kVideoFrameDelta = 4, |
sprang@webrtc.org | 71f055f | 2013-12-04 15:09:27 | [diff] [blame] | 92 | }; |
| 93 | |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 94 | // Statistics for an RTCP channel |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 95 | struct RtcpStatistics { |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 96 | RtcpStatistics() |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 97 | : fraction_lost(0), |
srte | 186d9c3 | 2017-08-04 12:03:53 | [diff] [blame] | 98 | packets_lost(0), |
| 99 | extended_highest_sequence_number(0), |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 100 | jitter(0) {} |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 101 | |
| 102 | uint8_t fraction_lost; |
srte | 186d9c3 | 2017-08-04 12:03:53 | [diff] [blame] | 103 | union { |
Harald Alvestrand | c7c4191 | 2017-12-08 08:59:34 | [diff] [blame] | 104 | int32_t packets_lost; // Defined as a 24 bit signed integer in RTCP |
srte | 186d9c3 | 2017-08-04 12:03:53 | [diff] [blame] | 105 | RTC_DEPRECATED uint32_t cumulative_lost; |
| 106 | }; |
| 107 | union { |
| 108 | uint32_t extended_highest_sequence_number; |
| 109 | RTC_DEPRECATED uint32_t extended_max_sequence_number; |
| 110 | }; |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 111 | uint32_t jitter; |
sprang@webrtc.org | fe5d36b | 2013-10-28 09:21:07 | [diff] [blame] | 112 | }; |
| 113 | |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 114 | class RtcpStatisticsCallback { |
| 115 | public: |
| 116 | virtual ~RtcpStatisticsCallback() {} |
| 117 | |
| 118 | virtual void StatisticsUpdated(const RtcpStatistics& statistics, |
| 119 | uint32_t ssrc) = 0; |
pbos@webrtc.org | ce4e9a3 | 2014-12-18 13:50:16 | [diff] [blame] | 120 | virtual void CNameChanged(const char* cname, uint32_t ssrc) = 0; |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 121 | }; |
| 122 | |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 | [diff] [blame] | 123 | // Statistics for RTCP packet types. |
| 124 | struct RtcpPacketTypeCounter { |
| 125 | RtcpPacketTypeCounter() |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 126 | : first_packet_time_ms(-1), |
| 127 | nack_packets(0), |
| 128 | fir_packets(0), |
| 129 | pli_packets(0), |
| 130 | nack_requests(0), |
| 131 | unique_nack_requests(0) {} |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 | [diff] [blame] | 132 | |
| 133 | void Add(const RtcpPacketTypeCounter& other) { |
| 134 | nack_packets += other.nack_packets; |
| 135 | fir_packets += other.fir_packets; |
| 136 | pli_packets += other.pli_packets; |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 137 | nack_requests += other.nack_requests; |
| 138 | unique_nack_requests += other.unique_nack_requests; |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 139 | if (other.first_packet_time_ms != -1 && |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 140 | (other.first_packet_time_ms < first_packet_time_ms || |
| 141 | first_packet_time_ms == -1)) { |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 142 | // Use oldest time. |
| 143 | first_packet_time_ms = other.first_packet_time_ms; |
| 144 | } |
| 145 | } |
| 146 | |
sprang | 07fb9be | 2016-02-24 15:55:00 | [diff] [blame] | 147 | void Subtract(const RtcpPacketTypeCounter& other) { |
| 148 | nack_packets -= other.nack_packets; |
| 149 | fir_packets -= other.fir_packets; |
| 150 | pli_packets -= other.pli_packets; |
| 151 | nack_requests -= other.nack_requests; |
| 152 | unique_nack_requests -= other.unique_nack_requests; |
| 153 | if (other.first_packet_time_ms != -1 && |
| 154 | (other.first_packet_time_ms > first_packet_time_ms || |
| 155 | first_packet_time_ms == -1)) { |
| 156 | // Use youngest time. |
| 157 | first_packet_time_ms = other.first_packet_time_ms; |
| 158 | } |
| 159 | } |
| 160 | |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 161 | int64_t TimeSinceFirstPacketInMs(int64_t now_ms) const { |
| 162 | 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] | 163 | } |
| 164 | |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 165 | int UniqueNackRequestsInPercent() const { |
| 166 | if (nack_requests == 0) { |
| 167 | return 0; |
| 168 | } |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 169 | return static_cast<int>((unique_nack_requests * 100.0f / nack_requests) + |
| 170 | 0.5f); |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 171 | } |
| 172 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 173 | int64_t first_packet_time_ms; // Time when first packet is sent/received. |
| 174 | uint32_t nack_packets; // Number of RTCP NACK packets. |
| 175 | uint32_t fir_packets; // Number of RTCP FIR packets. |
| 176 | uint32_t pli_packets; // Number of RTCP PLI packets. |
| 177 | uint32_t nack_requests; // Number of NACKed RTP packets. |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 | [diff] [blame] | 178 | uint32_t unique_nack_requests; // Number of unique NACKed RTP packets. |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 | [diff] [blame] | 179 | }; |
| 180 | |
pbos@webrtc.org | 1d0fa5d | 2015-02-19 12:47:00 | [diff] [blame] | 181 | class RtcpPacketTypeCounterObserver { |
| 182 | public: |
| 183 | virtual ~RtcpPacketTypeCounterObserver() {} |
| 184 | virtual void RtcpPacketTypesCounterUpdated( |
| 185 | uint32_t ssrc, |
| 186 | const RtcpPacketTypeCounter& packet_counter) = 0; |
| 187 | }; |
| 188 | |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 189 | // Rate statistics for a stream. |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 190 | struct BitrateStatistics { |
sprang | cd349d9 | 2016-07-13 16:11:28 | [diff] [blame] | 191 | BitrateStatistics() : bitrate_bps(0), packet_rate(0) {} |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 192 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 193 | uint32_t bitrate_bps; // Bitrate in bits per second. |
| 194 | uint32_t packet_rate; // Packet rate in packets per second. |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 195 | }; |
| 196 | |
| 197 | // Callback, used to notify an observer whenever new rates have been estimated. |
| 198 | class BitrateStatisticsObserver { |
| 199 | public: |
| 200 | virtual ~BitrateStatisticsObserver() {} |
| 201 | |
sprang | cd349d9 | 2016-07-13 16:11:28 | [diff] [blame] | 202 | virtual void Notify(uint32_t total_bitrate_bps, |
| 203 | uint32_t retransmit_bitrate_bps, |
stefan@webrtc.org | 0bae1fa | 2014-11-05 14:05:29 | [diff] [blame] | 204 | uint32_t ssrc) = 0; |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 205 | }; |
| 206 | |
pbos@webrtc.org | ce4e9a3 | 2014-12-18 13:50:16 | [diff] [blame] | 207 | struct FrameCounts { |
| 208 | FrameCounts() : key_frames(0), delta_frames(0) {} |
| 209 | int key_frames; |
| 210 | int delta_frames; |
| 211 | }; |
| 212 | |
asapersson@webrtc.org | d08d389 | 2014-12-16 12:03:11 | [diff] [blame] | 213 | // Callback, used to notify an observer whenever frame counts have been updated. |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 214 | class FrameCountObserver { |
| 215 | public: |
sprang@webrtc.org | 72964bd | 2013-11-21 09:09:54 | [diff] [blame] | 216 | virtual ~FrameCountObserver() {} |
pbos@webrtc.org | ce4e9a3 | 2014-12-18 13:50:16 | [diff] [blame] | 217 | virtual void FrameCountUpdated(const FrameCounts& frame_counts, |
| 218 | uint32_t ssrc) = 0; |
sprang@webrtc.org | dc50aae | 2013-11-20 16:47:07 | [diff] [blame] | 219 | }; |
| 220 | |
stefan@webrtc.org | 168f23f | 2014-07-11 13:44:02 | [diff] [blame] | 221 | // Callback, used to notify an observer whenever the send-side delay is updated. |
| 222 | class SendSideDelayObserver { |
| 223 | public: |
| 224 | virtual ~SendSideDelayObserver() {} |
| 225 | virtual void SendSideDelayUpdated(int avg_delay_ms, |
| 226 | int max_delay_ms, |
| 227 | uint32_t ssrc) = 0; |
| 228 | }; |
| 229 | |
asapersson | 35151f3 | 2016-05-03 06:44:01 | [diff] [blame] | 230 | // Callback, used to notify an observer whenever a packet is sent to the |
| 231 | // transport. |
| 232 | // TODO(asapersson): This class will remove the need for SendSideDelayObserver. |
| 233 | // Remove SendSideDelayObserver once possible. |
| 234 | class SendPacketObserver { |
| 235 | public: |
| 236 | virtual ~SendPacketObserver() {} |
| 237 | virtual void OnSendPacket(uint16_t packet_id, |
| 238 | int64_t capture_time_ms, |
| 239 | uint32_t ssrc) = 0; |
| 240 | }; |
| 241 | |
michaelt | 4da3044 | 2016-11-17 09:38:43 | [diff] [blame] | 242 | // Callback, used to notify an observer when the overhead per packet |
| 243 | // has changed. |
| 244 | class OverheadObserver { |
| 245 | public: |
| 246 | virtual ~OverheadObserver() = default; |
| 247 | virtual void OnOverheadChanged(size_t overhead_bytes_per_packet) = 0; |
| 248 | }; |
| 249 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 250 | // ================================================================== |
| 251 | // Voice specific types |
| 252 | // ================================================================== |
| 253 | |
| 254 | // Each codec supported can be described by this structure. |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 255 | struct CodecInst { |
| 256 | int pltype; |
| 257 | char plname[RTP_PAYLOAD_NAME_SIZE]; |
| 258 | int plfreq; |
| 259 | int pacsize; |
Peter Kasting | 6955870 | 2016-01-13 00:26:35 | [diff] [blame] | 260 | size_t channels; |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 261 | int rate; // bits/sec unlike {start,min,max}Bitrate elsewhere in this file! |
| 262 | |
| 263 | bool operator==(const CodecInst& other) const { |
| 264 | return pltype == other.pltype && |
| 265 | (STR_CASE_CMP(plname, other.plname) == 0) && |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 266 | plfreq == other.plfreq && pacsize == other.pacsize && |
| 267 | channels == other.channels && rate == other.rate; |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 268 | } |
| 269 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 270 | bool operator!=(const CodecInst& other) const { return !(*this == other); } |
kwiberg | 5bf4e08 | 2016-12-19 14:04:04 | [diff] [blame] | 271 | |
| 272 | friend std::ostream& operator<<(std::ostream& os, const CodecInst& ci) { |
| 273 | os << "{pltype: " << ci.pltype; |
| 274 | os << ", plname: " << ci.plname; |
| 275 | os << ", plfreq: " << ci.plfreq; |
| 276 | os << ", pacsize: " << ci.pacsize; |
| 277 | os << ", channels: " << ci.channels; |
| 278 | os << ", rate: " << ci.rate << "}"; |
| 279 | return os; |
| 280 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 281 | }; |
| 282 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 283 | // RTP |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 284 | enum { kRtpCsrcSize = 15 }; // RFC 3550 page 13 |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 285 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 286 | enum PayloadFrequencies { |
| 287 | kFreq8000Hz = 8000, |
| 288 | kFreq16000Hz = 16000, |
| 289 | kFreq32000Hz = 32000 |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 290 | }; |
| 291 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 292 | // Degree of bandwidth reduction. |
| 293 | enum VadModes { |
| 294 | kVadConventional = 0, // lowest reduction |
| 295 | kVadAggressiveLow, |
| 296 | kVadAggressiveMid, |
| 297 | kVadAggressiveHigh // highest reduction |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 298 | }; |
| 299 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 300 | // NETEQ statistics. |
| 301 | struct NetworkStatistics { |
| 302 | // current jitter buffer size in ms |
| 303 | uint16_t currentBufferSize; |
| 304 | // preferred (optimal) buffer size in ms |
| 305 | uint16_t preferredBufferSize; |
| 306 | // adding extra delay due to "peaky jitter" |
| 307 | bool jitterPeaksFound; |
Gustaf Ullberg | b0a0207 | 2017-10-02 10:00:34 | [diff] [blame] | 308 | // Stats below correspond to similarly-named fields in the WebRTC stats spec. |
| 309 | // https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats |
Steve Anton | 2dbc69f | 2017-08-25 00:15:13 | [diff] [blame] | 310 | uint64_t totalSamplesReceived; |
Steve Anton | 2dbc69f | 2017-08-25 00:15:13 | [diff] [blame] | 311 | uint64_t concealedSamples; |
Gustaf Ullberg | 9a2e906 | 2017-09-18 07:28:20 | [diff] [blame] | 312 | uint64_t concealmentEvents; |
Gustaf Ullberg | b0a0207 | 2017-10-02 10:00:34 | [diff] [blame] | 313 | uint64_t jitterBufferDelayMs; |
| 314 | // Stats below DO NOT correspond directly to anything in the WebRTC stats |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 315 | // Loss rate (network + late); fraction between 0 and 1, scaled to Q14. |
| 316 | uint16_t currentPacketLossRate; |
| 317 | // Late loss rate; fraction between 0 and 1, scaled to Q14. |
minyue-webrtc | 0c3ca75 | 2017-08-23 13:59:38 | [diff] [blame] | 318 | union { |
| 319 | RTC_DEPRECATED uint16_t currentDiscardRate; |
| 320 | }; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 321 | // fraction (of original stream) of synthesized audio inserted through |
| 322 | // expansion (in Q14) |
| 323 | uint16_t currentExpandRate; |
| 324 | // fraction (of original stream) of synthesized speech inserted through |
| 325 | // expansion (in Q14) |
| 326 | uint16_t currentSpeechExpandRate; |
| 327 | // fraction of synthesized speech inserted through pre-emptive expansion |
| 328 | // (in Q14) |
| 329 | uint16_t currentPreemptiveRate; |
| 330 | // fraction of data removed through acceleration (in Q14) |
| 331 | uint16_t currentAccelerateRate; |
| 332 | // fraction of data coming from secondary decoding (in Q14) |
| 333 | uint16_t currentSecondaryDecodedRate; |
minyue-webrtc | 0e320ec | 2017-08-28 11:51:27 | [diff] [blame] | 334 | // Fraction of secondary data, including FEC and RED, that is discarded (in |
| 335 | // Q14). Discarding of secondary data can be caused by the reception of the |
| 336 | // primary data, obsoleting the secondary data. It can also be caused by early |
| 337 | // or late arrival of secondary data. |
minyue-webrtc | 0c3ca75 | 2017-08-23 13:59:38 | [diff] [blame] | 338 | uint16_t currentSecondaryDiscardedRate; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 339 | // clock-drift in parts-per-million (negative or positive) |
| 340 | int32_t clockDriftPPM; |
| 341 | // average packet waiting time in the jitter buffer (ms) |
| 342 | int meanWaitingTimeMs; |
| 343 | // median packet waiting time in the jitter buffer (ms) |
| 344 | int medianWaitingTimeMs; |
| 345 | // min packet waiting time in the jitter buffer (ms) |
| 346 | int minWaitingTimeMs; |
| 347 | // max packet waiting time in the jitter buffer (ms) |
| 348 | int maxWaitingTimeMs; |
| 349 | // added samples in off mode due to packet loss |
| 350 | size_t addedSamples; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 351 | }; |
| 352 | |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 353 | // Statistics for calls to AudioCodingModule::PlayoutData10Ms(). |
| 354 | struct AudioDecodingCallStats { |
| 355 | AudioDecodingCallStats() |
| 356 | : calls_to_silence_generator(0), |
| 357 | calls_to_neteq(0), |
| 358 | decoded_normal(0), |
| 359 | decoded_plc(0), |
| 360 | decoded_cng(0), |
henrik.lundin | 6348978 | 2016-09-20 08:47:12 | [diff] [blame] | 361 | decoded_plc_cng(0), |
| 362 | decoded_muted_output(0) {} |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 363 | |
| 364 | int calls_to_silence_generator; // Number of calls where silence generated, |
| 365 | // and NetEq was disengaged from decoding. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 366 | int calls_to_neteq; // Number of calls to NetEq. |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 367 | int decoded_normal; // Number of calls where audio RTP packet decoded. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 368 | int decoded_plc; // Number of calls resulted in PLC. |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 369 | int decoded_cng; // Number of calls where comfort noise generated due to DTX. |
| 370 | int decoded_plc_cng; // Number of calls resulted where PLC faded to CNG. |
henrik.lundin | 6348978 | 2016-09-20 08:47:12 | [diff] [blame] | 371 | int decoded_muted_output; // Number of calls returning a muted state output. |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 | [diff] [blame] | 372 | }; |
| 373 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 374 | // ================================================================== |
| 375 | // Video specific types |
| 376 | // ================================================================== |
| 377 | |
nisse | eb44b39 | 2017-04-28 14:18:05 | [diff] [blame] | 378 | // TODO(nisse): Delete, and switch to fourcc values everywhere? |
| 379 | // Supported video types. |
| 380 | enum class VideoType { |
| 381 | kUnknown, |
| 382 | kI420, |
| 383 | kIYUV, |
| 384 | kRGB24, |
| 385 | kABGR, |
| 386 | kARGB, |
| 387 | kARGB4444, |
| 388 | kRGB565, |
| 389 | kARGB1555, |
| 390 | kYUY2, |
| 391 | kYV12, |
| 392 | kUYVY, |
| 393 | kMJPEG, |
| 394 | kNV21, |
| 395 | kNV12, |
| 396 | kBGRA, |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 397 | }; |
| 398 | |
| 399 | // Video codec |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 400 | enum { kPayloadNameSize = 32 }; |
| 401 | enum { kMaxSimulcastStreams = 4 }; |
sprang | ce4aef1 | 2015-11-02 15:23:20 | [diff] [blame] | 402 | enum { kMaxSpatialLayers = 5 }; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 403 | enum { kMaxTemporalStreams = 4 }; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 404 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 405 | enum VideoCodecComplexity { |
| 406 | kComplexityNormal = 0, |
| 407 | kComplexityHigh = 1, |
| 408 | kComplexityHigher = 2, |
| 409 | kComplexityMax = 3 |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 410 | }; |
| 411 | |
stefan@webrtc.org | efd0a48 | 2011-12-29 10:12:35 | [diff] [blame] | 412 | enum VP8ResilienceMode { |
| 413 | kResilienceOff, // The stream produced by the encoder requires a |
| 414 | // recovery frame (typically a key frame) to be |
| 415 | // decodable after a packet loss. |
| 416 | kResilientStream, // A stream produced by the encoder is resilient to |
| 417 | // packet losses, but packets within a frame subsequent |
| 418 | // to a loss can't be decoded. |
| 419 | kResilientFrames // Same as kResilientStream but with added resilience |
| 420 | // within a frame. |
| 421 | }; |
| 422 | |
Peter Boström | 7b971e7 | 2016-01-19 15:26:16 | [diff] [blame] | 423 | class TemporalLayersFactory; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 424 | // VP8 specific |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 425 | struct VideoCodecVP8 { |
nisse | 3257b16 | 2017-03-21 08:54:13 | [diff] [blame] | 426 | // TODO(nisse): Unused, delete? |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 427 | bool pictureLossIndicationOn; |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 428 | VideoCodecComplexity complexity; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 429 | VP8ResilienceMode resilience; |
| 430 | unsigned char numberOfTemporalLayers; |
| 431 | bool denoisingOn; |
| 432 | bool errorConcealmentOn; |
| 433 | bool automaticResizeOn; |
| 434 | bool frameDroppingOn; |
| 435 | int keyFrameInterval; |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 436 | TemporalLayersFactory* tl_factory; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 437 | }; |
| 438 | |
asapersson | a9455ab | 2015-07-31 13:10:09 | [diff] [blame] | 439 | // VP9 specific. |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 440 | struct VideoCodecVP9 { |
| 441 | VideoCodecComplexity complexity; |
asapersson | 15dcb38 | 2017-06-08 09:55:08 | [diff] [blame] | 442 | bool resilienceOn; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 443 | unsigned char numberOfTemporalLayers; |
| 444 | bool denoisingOn; |
| 445 | bool frameDroppingOn; |
| 446 | int keyFrameInterval; |
| 447 | bool adaptiveQpMode; |
| 448 | bool automaticResizeOn; |
| 449 | unsigned char numberOfSpatialLayers; |
| 450 | bool flexibleMode; |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 451 | }; |
| 452 | |
magjed | e69a1a9 | 2016-11-25 18:06:31 | [diff] [blame] | 453 | // TODO(magjed): Move this and other H264 related classes out to their own file. |
| 454 | namespace H264 { |
| 455 | |
| 456 | enum Profile { |
| 457 | kProfileConstrainedBaseline, |
| 458 | kProfileBaseline, |
| 459 | kProfileMain, |
| 460 | kProfileConstrainedHigh, |
| 461 | kProfileHigh, |
| 462 | }; |
| 463 | |
| 464 | } // namespace H264 |
| 465 | |
stefan@webrtc.org | b9f5453 | 2014-07-04 12:42:07 | [diff] [blame] | 466 | // H264 specific. |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 467 | struct VideoCodecH264 { |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 468 | bool frameDroppingOn; |
| 469 | int keyFrameInterval; |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 470 | // These are NULL/0 if not externally negotiated. |
| 471 | const uint8_t* spsData; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 472 | size_t spsLen; |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 473 | const uint8_t* ppsData; |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 474 | size_t ppsLen; |
magjed | e69a1a9 | 2016-11-25 18:06:31 | [diff] [blame] | 475 | H264::Profile profile; |
stefan@webrtc.org | b9f5453 | 2014-07-04 12:42:07 | [diff] [blame] | 476 | }; |
| 477 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 478 | // Video codec types |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 479 | enum VideoCodecType { |
| 480 | kVideoCodecVP8, |
| 481 | kVideoCodecVP9, |
| 482 | kVideoCodecH264, |
| 483 | kVideoCodecI420, |
| 484 | kVideoCodecRED, |
| 485 | kVideoCodecULPFEC, |
brandtr | 87d7d77 | 2016-11-07 11:03:41 | [diff] [blame] | 486 | kVideoCodecFlexfec, |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 487 | kVideoCodecGeneric, |
Emircan Uysaler | 90612a6 | 2017-11-28 17:45:25 | [diff] [blame] | 488 | kVideoCodecStereo, |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 489 | kVideoCodecUnknown |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 490 | }; |
| 491 | |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 492 | // Translates from name of codec to codec type and vice versa. |
kthelgason | 1cdddc9 | 2017-08-24 10:52:48 | [diff] [blame] | 493 | const char* CodecTypeToPayloadString(VideoCodecType type); |
| 494 | VideoCodecType PayloadStringToCodecType(const std::string& name); |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 495 | |
marpan@webrtc.org | 5b88317 | 2014-11-01 06:10:48 | [diff] [blame] | 496 | union VideoCodecUnion { |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 497 | VideoCodecVP8 VP8; |
| 498 | VideoCodecVP9 VP9; |
| 499 | VideoCodecH264 H264; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 500 | }; |
| 501 | |
phoglund@webrtc.org | 8bfee84 | 2012-02-17 09:32:48 | [diff] [blame] | 502 | // Simulcast is when the same stream is encoded multiple times with different |
| 503 | // settings such as resolution. |
mallinath@webrtc.org | 0209e56 | 2014-03-21 00:41:28 | [diff] [blame] | 504 | struct SimulcastStream { |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 505 | unsigned short width; |
| 506 | unsigned short height; |
| 507 | unsigned char numberOfTemporalLayers; |
| 508 | unsigned int maxBitrate; // kilobits/sec. |
| 509 | unsigned int targetBitrate; // kilobits/sec. |
| 510 | unsigned int minBitrate; // kilobits/sec. |
| 511 | unsigned int qpMax; // minimum quality |
pwestin@webrtc.org | 1da1ce0 | 2011-10-13 15:19:55 | [diff] [blame] | 512 | }; |
| 513 | |
sprang | ce4aef1 | 2015-11-02 15:23:20 | [diff] [blame] | 514 | struct SpatialLayer { |
| 515 | int scaling_factor_num; |
| 516 | int scaling_factor_den; |
| 517 | int target_bitrate_bps; |
| 518 | // TODO(ivica): Add max_quantizer and min_quantizer? |
| 519 | }; |
| 520 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 521 | enum VideoCodecMode { kRealtimeVideo, kScreensharing }; |
stefan@webrtc.org | eb91792 | 2013-02-18 14:40:18 | [diff] [blame] | 522 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 523 | // Common video codec properties |
hta | 257dc39 | 2016-10-25 16:05:06 | [diff] [blame] | 524 | class VideoCodec { |
| 525 | public: |
| 526 | VideoCodec(); |
| 527 | |
| 528 | // Public variables. TODO(hta): Make them private with accessors. |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 529 | VideoCodecType codecType; |
| 530 | char plName[kPayloadNameSize]; |
| 531 | unsigned char plType; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 532 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 533 | unsigned short width; |
| 534 | unsigned short height; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 535 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 536 | unsigned int startBitrate; // kilobits/sec. |
| 537 | unsigned int maxBitrate; // kilobits/sec. |
| 538 | unsigned int minBitrate; // kilobits/sec. |
| 539 | unsigned int targetBitrate; // kilobits/sec. |
pbos@webrtc.org | 3c412b2 | 2014-03-24 12:36:52 | [diff] [blame] | 540 | |
Stefan Holmer | 144475b | 2017-03-10 14:08:26 | [diff] [blame] | 541 | uint32_t maxFramerate; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 542 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 543 | unsigned int qpMax; |
| 544 | unsigned char numberOfSimulcastStreams; |
| 545 | SimulcastStream simulcastStream[kMaxSimulcastStreams]; |
sprang | ce4aef1 | 2015-11-02 15:23:20 | [diff] [blame] | 546 | SpatialLayer spatialLayers[kMaxSpatialLayers]; |
stefan@webrtc.org | eb91792 | 2013-02-18 14:40:18 | [diff] [blame] | 547 | |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 548 | VideoCodecMode mode; |
| 549 | bool expect_encode_from_texture; |
andresp@webrtc.org | 185bae4 | 2013-05-14 08:02:25 | [diff] [blame] | 550 | |
ilnik | 04f4d12 | 2017-06-19 14:18:55 | [diff] [blame] | 551 | // Timing frames configuration. There is delay of delay_ms between two |
| 552 | // consequent timing frames, excluding outliers. Frame is always made a |
| 553 | // timing frame if it's at least outlier_ratio in percent of "ideal" average |
| 554 | // frame given bitrate and framerate, i.e. if it's bigger than |
| 555 | // |outlier_ratio / 100.0 * bitrate_bps / fps| in bits. This way, timing |
| 556 | // frames will not be sent too often usually. Yet large frames will always |
| 557 | // have timing information for debug purposes because they are more likely to |
| 558 | // cause extra delays. |
| 559 | struct TimingFrameTriggerThresholds { |
| 560 | int64_t delay_ms; |
| 561 | uint16_t outlier_ratio_percent; |
| 562 | } timing_frame_thresholds; |
| 563 | |
Peter Boström | 7b971e7 | 2016-01-19 15:26:16 | [diff] [blame] | 564 | bool operator==(const VideoCodec& other) const = delete; |
| 565 | bool operator!=(const VideoCodec& other) const = delete; |
hta | 257dc39 | 2016-10-25 16:05:06 | [diff] [blame] | 566 | |
| 567 | // Accessors for codec specific information. |
| 568 | // There is a const version of each that returns a reference, |
| 569 | // and a non-const version that returns a pointer, in order |
| 570 | // to allow modification of the parameters. |
| 571 | VideoCodecVP8* VP8(); |
| 572 | const VideoCodecVP8& VP8() const; |
| 573 | VideoCodecVP9* VP9(); |
| 574 | const VideoCodecVP9& VP9() const; |
| 575 | VideoCodecH264* H264(); |
| 576 | const VideoCodecH264& H264() const; |
| 577 | |
hta | 527d347 | 2016-11-17 07:23:04 | [diff] [blame] | 578 | private: |
hta | 257dc39 | 2016-10-25 16:05:06 | [diff] [blame] | 579 | // TODO(hta): Consider replacing the union with a pointer type. |
| 580 | // This will allow removing the VideoCodec* types from this file. |
hta | 527d347 | 2016-11-17 07:23:04 | [diff] [blame] | 581 | VideoCodecUnion codec_specific_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 582 | }; |
astor@webrtc.org | bd7aeba | 2012-06-26 10:47:04 | [diff] [blame] | 583 | |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 584 | class BitrateAllocation { |
| 585 | public: |
| 586 | static const uint32_t kMaxBitrateBps; |
| 587 | BitrateAllocation(); |
| 588 | |
| 589 | bool SetBitrate(size_t spatial_index, |
| 590 | size_t temporal_index, |
| 591 | uint32_t bitrate_bps); |
| 592 | |
erikvarga@webrtc.org | 01f2ec3 | 2017-11-15 13:58:23 | [diff] [blame] | 593 | bool HasBitrate(size_t spatial_index, size_t temporal_index) const; |
| 594 | |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 595 | uint32_t GetBitrate(size_t spatial_index, size_t temporal_index) const; |
| 596 | |
erikvarga@webrtc.org | 01f2ec3 | 2017-11-15 13:58:23 | [diff] [blame] | 597 | // Whether the specific spatial layers has the bitrate set in any of its |
| 598 | // temporal layers. |
| 599 | bool IsSpatialLayerUsed(size_t spatial_index) const; |
| 600 | |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 601 | // Get the sum of all the temporal layer for a specific spatial layer. |
| 602 | uint32_t GetSpatialLayerSum(size_t spatial_index) const; |
| 603 | |
| 604 | uint32_t get_sum_bps() const { return sum_; } // Sum of all bitrates. |
| 605 | uint32_t get_sum_kbps() const { return (sum_ + 500) / 1000; } |
| 606 | |
| 607 | inline bool operator==(const BitrateAllocation& other) const { |
| 608 | return memcmp(bitrates_, other.bitrates_, sizeof(bitrates_)) == 0; |
| 609 | } |
| 610 | inline bool operator!=(const BitrateAllocation& other) const { |
| 611 | return !(*this == other); |
| 612 | } |
| 613 | |
sprang | d0fc37a | 2017-06-22 12:40:25 | [diff] [blame] | 614 | // Expensive, please use only in tests. |
| 615 | std::string ToString() const; |
| 616 | std::ostream& operator<<(std::ostream& os) const; |
| 617 | |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 618 | private: |
| 619 | uint32_t sum_; |
| 620 | uint32_t bitrates_[kMaxSpatialLayers][kMaxTemporalStreams]; |
erikvarga@webrtc.org | 01f2ec3 | 2017-11-15 13:58:23 | [diff] [blame] | 621 | bool has_bitrate_[kMaxSpatialLayers][kMaxTemporalStreams]; |
Erik Språng | 08127a9 | 2016-11-16 15:41:30 | [diff] [blame] | 622 | }; |
| 623 | |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 624 | // Bandwidth over-use detector options. These are used to drive |
| 625 | // experimentation with bandwidth estimation parameters. |
| 626 | // See modules/remote_bitrate_estimator/overuse_detector.h |
terelius | 84f83f8 | 2016-12-27 18:43:01 | [diff] [blame] | 627 | // TODO(terelius): This is only used in overuse_estimator.cc, and only in the |
| 628 | // default constructed state. Can we move the relevant variables into that |
| 629 | // class and delete this? See also disabled warning at line 27 |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 630 | struct OverUseDetectorOptions { |
| 631 | OverUseDetectorOptions() |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 632 | : initial_slope(8.0 / 512.0), |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 633 | initial_offset(0), |
| 634 | initial_e(), |
| 635 | initial_process_noise(), |
| 636 | initial_avg_noise(0.0), |
| 637 | initial_var_noise(50) { |
| 638 | initial_e[0][0] = 100; |
| 639 | initial_e[1][1] = 1e-1; |
| 640 | initial_e[0][1] = initial_e[1][0] = 0; |
| 641 | initial_process_noise[0] = 1e-13; |
stefan | 1069cac | 2016-03-10 13:13:21 | [diff] [blame] | 642 | initial_process_noise[1] = 1e-3; |
stefan | 64c0a0a | 2015-11-27 09:02:31 | [diff] [blame] | 643 | } |
| 644 | double initial_slope; |
| 645 | double initial_offset; |
| 646 | double initial_e[2][2]; |
| 647 | double initial_process_noise[2]; |
| 648 | double initial_avg_noise; |
| 649 | double initial_var_noise; |
| 650 | }; |
| 651 | |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 | [diff] [blame] | 652 | // This structure will have the information about when packet is actually |
| 653 | // received by socket. |
| 654 | struct PacketTime { |
henrike@webrtc.org | 82d3cb6 | 2014-04-29 17:50:47 | [diff] [blame] | 655 | PacketTime() : timestamp(-1), not_before(-1) {} |
| 656 | PacketTime(int64_t timestamp, int64_t not_before) |
solenberg | 634b86e | 2016-09-01 14:54:53 | [diff] [blame] | 657 | : timestamp(timestamp), not_before(not_before) {} |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 | [diff] [blame] | 658 | |
henrike@webrtc.org | 82d3cb6 | 2014-04-29 17:50:47 | [diff] [blame] | 659 | int64_t timestamp; // Receive time after socket delivers the data. |
| 660 | int64_t not_before; // Earliest possible time the data could have arrived, |
| 661 | // indicating the potential error in the |timestamp| |
| 662 | // value,in case the system is busy. |
| 663 | // For example, the time of the last select() call. |
| 664 | // If unknown, this value will be set to zero. |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 | [diff] [blame] | 665 | }; |
| 666 | |
isheriff | 6b4b5f3 | 2016-06-08 07:24:21 | [diff] [blame] | 667 | // Minimum and maximum playout delay values from capture to render. |
| 668 | // These are best effort values. |
| 669 | // |
| 670 | // A value < 0 indicates no change from previous valid value. |
| 671 | // |
| 672 | // min = max = 0 indicates that the receiver should try and render |
| 673 | // frame as soon as possible. |
| 674 | // |
| 675 | // min = x, max = y indicates that the receiver is free to adapt |
| 676 | // in the range (x, y) based on network jitter. |
| 677 | // |
| 678 | // Note: Given that this gets embedded in a union, it is up-to the owner to |
| 679 | // initialize these values. |
| 680 | struct PlayoutDelay { |
| 681 | int min_ms; |
| 682 | int max_ms; |
| 683 | }; |
| 684 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 685 | } // namespace webrtc |
andrew@webrtc.org | eda189b | 2013-09-09 17:50:10 | [diff] [blame] | 686 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 687 | #endif // COMMON_TYPES_H_ |