henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * libjingle |
| 3 | * Copyright 2004 Google Inc. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright notice, |
| 9 | * this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 17 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 18 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 19 | * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 21 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
| 28 | #ifndef TALK_MEDIA_BASE_MEDIACHANNEL_H_ |
| 29 | #define TALK_MEDIA_BASE_MEDIACHANNEL_H_ |
| 30 | |
| 31 | #include <string> |
| 32 | #include <vector> |
| 33 | |
buildbot@webrtc.org | a09a999 | 2014-08-13 17:26:08 +0000 | [diff] [blame] | 34 | #include "talk/media/base/codec.h" |
| 35 | #include "talk/media/base/constants.h" |
| 36 | #include "talk/media/base/streamparams.h" |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 37 | #include "webrtc/base/basictypes.h" |
| 38 | #include "webrtc/base/buffer.h" |
| 39 | #include "webrtc/base/dscp.h" |
| 40 | #include "webrtc/base/logging.h" |
| 41 | #include "webrtc/base/sigslot.h" |
| 42 | #include "webrtc/base/socket.h" |
| 43 | #include "webrtc/base/window.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 44 | // TODO(juberti): re-evaluate this include |
| 45 | #include "talk/session/media/audiomonitor.h" |
| 46 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 47 | namespace rtc { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 48 | class Buffer; |
| 49 | class RateLimiter; |
| 50 | class Timing; |
| 51 | } |
| 52 | |
| 53 | namespace cricket { |
| 54 | |
| 55 | class AudioRenderer; |
| 56 | struct RtpHeader; |
| 57 | class ScreencastId; |
| 58 | struct VideoFormat; |
| 59 | class VideoCapturer; |
| 60 | class VideoRenderer; |
| 61 | |
| 62 | const int kMinRtpHeaderExtensionId = 1; |
| 63 | const int kMaxRtpHeaderExtensionId = 255; |
| 64 | const int kScreencastDefaultFps = 5; |
wu@webrtc.org | cfe5e9c | 2014-03-27 17:03:58 +0000 | [diff] [blame] | 65 | const int kHighStartBitrate = 1500; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 66 | |
| 67 | // Used in AudioOptions and VideoOptions to signify "unset" values. |
| 68 | template <class T> |
| 69 | class Settable { |
| 70 | public: |
| 71 | Settable() : set_(false), val_() {} |
| 72 | explicit Settable(T val) : set_(true), val_(val) {} |
| 73 | |
| 74 | bool IsSet() const { |
| 75 | return set_; |
| 76 | } |
| 77 | |
| 78 | bool Get(T* out) const { |
| 79 | *out = val_; |
| 80 | return set_; |
| 81 | } |
| 82 | |
| 83 | T GetWithDefaultIfUnset(const T& default_value) const { |
| 84 | return set_ ? val_ : default_value; |
| 85 | } |
| 86 | |
pthatcher@webrtc.org | 40b276e | 2014-12-12 02:44:30 +0000 | [diff] [blame] | 87 | void Set(T val) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 88 | set_ = true; |
| 89 | val_ = val; |
| 90 | } |
| 91 | |
| 92 | void Clear() { |
| 93 | Set(T()); |
| 94 | set_ = false; |
| 95 | } |
| 96 | |
| 97 | void SetFrom(const Settable<T>& o) { |
| 98 | // Set this value based on the value of o, iff o is set. If this value is |
| 99 | // set and o is unset, the current value will be unchanged. |
| 100 | T val; |
| 101 | if (o.Get(&val)) { |
| 102 | Set(val); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | std::string ToString() const { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 107 | return set_ ? rtc::ToString(val_) : ""; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | bool operator==(const Settable<T>& o) const { |
| 111 | // Equal if both are unset with any value or both set with the same value. |
| 112 | return (set_ == o.set_) && (!set_ || (val_ == o.val_)); |
| 113 | } |
| 114 | |
| 115 | bool operator!=(const Settable<T>& o) const { |
| 116 | return !operator==(o); |
| 117 | } |
| 118 | |
| 119 | protected: |
| 120 | void InitializeValue(const T &val) { |
| 121 | val_ = val; |
| 122 | } |
| 123 | |
| 124 | private: |
| 125 | bool set_; |
| 126 | T val_; |
| 127 | }; |
| 128 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 129 | template <class T> |
| 130 | static std::string ToStringIfSet(const char* key, const Settable<T>& val) { |
| 131 | std::string str; |
| 132 | if (val.IsSet()) { |
| 133 | str = key; |
| 134 | str += ": "; |
| 135 | str += val.ToString(); |
| 136 | str += ", "; |
| 137 | } |
| 138 | return str; |
| 139 | } |
| 140 | |
| 141 | // Options that can be applied to a VoiceMediaChannel or a VoiceMediaEngine. |
| 142 | // Used to be flags, but that makes it hard to selectively apply options. |
| 143 | // We are moving all of the setting of options to structs like this, |
| 144 | // but some things currently still use flags. |
| 145 | struct AudioOptions { |
| 146 | void SetAll(const AudioOptions& change) { |
| 147 | echo_cancellation.SetFrom(change.echo_cancellation); |
| 148 | auto_gain_control.SetFrom(change.auto_gain_control); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 149 | rx_auto_gain_control.SetFrom(change.rx_auto_gain_control); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 150 | noise_suppression.SetFrom(change.noise_suppression); |
| 151 | highpass_filter.SetFrom(change.highpass_filter); |
| 152 | stereo_swapping.SetFrom(change.stereo_swapping); |
Henrik Lundin | 64dad83 | 2015-05-11 12:44:23 +0200 | [diff] [blame^] | 153 | audio_jitter_buffer_max_packets.SetFrom( |
| 154 | change.audio_jitter_buffer_max_packets); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 155 | typing_detection.SetFrom(change.typing_detection); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 156 | aecm_generate_comfort_noise.SetFrom(change.aecm_generate_comfort_noise); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 157 | conference_mode.SetFrom(change.conference_mode); |
| 158 | adjust_agc_delta.SetFrom(change.adjust_agc_delta); |
| 159 | experimental_agc.SetFrom(change.experimental_agc); |
| 160 | experimental_aec.SetFrom(change.experimental_aec); |
Bjorn Volcker | bf395c1 | 2015-03-25 22:45:56 +0100 | [diff] [blame] | 161 | delay_agnostic_aec.SetFrom(change.delay_agnostic_aec); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 162 | experimental_ns.SetFrom(change.experimental_ns); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 163 | aec_dump.SetFrom(change.aec_dump); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 164 | tx_agc_target_dbov.SetFrom(change.tx_agc_target_dbov); |
| 165 | tx_agc_digital_compression_gain.SetFrom( |
| 166 | change.tx_agc_digital_compression_gain); |
| 167 | tx_agc_limiter.SetFrom(change.tx_agc_limiter); |
| 168 | rx_agc_target_dbov.SetFrom(change.rx_agc_target_dbov); |
| 169 | rx_agc_digital_compression_gain.SetFrom( |
| 170 | change.rx_agc_digital_compression_gain); |
| 171 | rx_agc_limiter.SetFrom(change.rx_agc_limiter); |
| 172 | recording_sample_rate.SetFrom(change.recording_sample_rate); |
| 173 | playout_sample_rate.SetFrom(change.playout_sample_rate); |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 174 | dscp.SetFrom(change.dscp); |
buildbot@webrtc.org | b4c7b09 | 2014-08-25 12:11:58 +0000 | [diff] [blame] | 175 | combined_audio_video_bwe.SetFrom(change.combined_audio_video_bwe); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | bool operator==(const AudioOptions& o) const { |
| 179 | return echo_cancellation == o.echo_cancellation && |
| 180 | auto_gain_control == o.auto_gain_control && |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 181 | rx_auto_gain_control == o.rx_auto_gain_control && |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 182 | noise_suppression == o.noise_suppression && |
| 183 | highpass_filter == o.highpass_filter && |
| 184 | stereo_swapping == o.stereo_swapping && |
Henrik Lundin | 64dad83 | 2015-05-11 12:44:23 +0200 | [diff] [blame^] | 185 | audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets && |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 186 | typing_detection == o.typing_detection && |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 187 | aecm_generate_comfort_noise == o.aecm_generate_comfort_noise && |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 188 | conference_mode == o.conference_mode && |
| 189 | experimental_agc == o.experimental_agc && |
| 190 | experimental_aec == o.experimental_aec && |
Bjorn Volcker | bf395c1 | 2015-03-25 22:45:56 +0100 | [diff] [blame] | 191 | delay_agnostic_aec == o.delay_agnostic_aec && |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 192 | experimental_ns == o.experimental_ns && |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 193 | adjust_agc_delta == o.adjust_agc_delta && |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 194 | aec_dump == o.aec_dump && |
| 195 | tx_agc_target_dbov == o.tx_agc_target_dbov && |
| 196 | tx_agc_digital_compression_gain == o.tx_agc_digital_compression_gain && |
| 197 | tx_agc_limiter == o.tx_agc_limiter && |
| 198 | rx_agc_target_dbov == o.rx_agc_target_dbov && |
| 199 | rx_agc_digital_compression_gain == o.rx_agc_digital_compression_gain && |
| 200 | rx_agc_limiter == o.rx_agc_limiter && |
| 201 | recording_sample_rate == o.recording_sample_rate && |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 202 | playout_sample_rate == o.playout_sample_rate && |
buildbot@webrtc.org | b4c7b09 | 2014-08-25 12:11:58 +0000 | [diff] [blame] | 203 | dscp == o.dscp && |
| 204 | combined_audio_video_bwe == o.combined_audio_video_bwe; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | std::string ToString() const { |
| 208 | std::ostringstream ost; |
| 209 | ost << "AudioOptions {"; |
| 210 | ost << ToStringIfSet("aec", echo_cancellation); |
| 211 | ost << ToStringIfSet("agc", auto_gain_control); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 212 | ost << ToStringIfSet("rx_agc", rx_auto_gain_control); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 213 | ost << ToStringIfSet("ns", noise_suppression); |
| 214 | ost << ToStringIfSet("hf", highpass_filter); |
| 215 | ost << ToStringIfSet("swap", stereo_swapping); |
Henrik Lundin | 64dad83 | 2015-05-11 12:44:23 +0200 | [diff] [blame^] | 216 | ost << ToStringIfSet("audio_jitter_buffer_max_packets", |
| 217 | audio_jitter_buffer_max_packets); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 218 | ost << ToStringIfSet("typing", typing_detection); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 219 | ost << ToStringIfSet("comfort_noise", aecm_generate_comfort_noise); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 220 | ost << ToStringIfSet("conference", conference_mode); |
| 221 | ost << ToStringIfSet("agc_delta", adjust_agc_delta); |
| 222 | ost << ToStringIfSet("experimental_agc", experimental_agc); |
| 223 | ost << ToStringIfSet("experimental_aec", experimental_aec); |
Bjorn Volcker | bf395c1 | 2015-03-25 22:45:56 +0100 | [diff] [blame] | 224 | ost << ToStringIfSet("delay_agnostic_aec", delay_agnostic_aec); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 225 | ost << ToStringIfSet("experimental_ns", experimental_ns); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 226 | ost << ToStringIfSet("aec_dump", aec_dump); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 227 | ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov); |
| 228 | ost << ToStringIfSet("tx_agc_digital_compression_gain", |
| 229 | tx_agc_digital_compression_gain); |
| 230 | ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter); |
| 231 | ost << ToStringIfSet("rx_agc_target_dbov", rx_agc_target_dbov); |
| 232 | ost << ToStringIfSet("rx_agc_digital_compression_gain", |
| 233 | rx_agc_digital_compression_gain); |
| 234 | ost << ToStringIfSet("rx_agc_limiter", rx_agc_limiter); |
| 235 | ost << ToStringIfSet("recording_sample_rate", recording_sample_rate); |
| 236 | ost << ToStringIfSet("playout_sample_rate", playout_sample_rate); |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 237 | ost << ToStringIfSet("dscp", dscp); |
buildbot@webrtc.org | b4c7b09 | 2014-08-25 12:11:58 +0000 | [diff] [blame] | 238 | ost << ToStringIfSet("combined_audio_video_bwe", combined_audio_video_bwe); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 239 | ost << "}"; |
| 240 | return ost.str(); |
| 241 | } |
| 242 | |
| 243 | // Audio processing that attempts to filter away the output signal from |
| 244 | // later inbound pickup. |
| 245 | Settable<bool> echo_cancellation; |
| 246 | // Audio processing to adjust the sensitivity of the local mic dynamically. |
| 247 | Settable<bool> auto_gain_control; |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 248 | // Audio processing to apply gain to the remote audio. |
| 249 | Settable<bool> rx_auto_gain_control; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 250 | // Audio processing to filter out background noise. |
| 251 | Settable<bool> noise_suppression; |
| 252 | // Audio processing to remove background noise of lower frequencies. |
| 253 | Settable<bool> highpass_filter; |
| 254 | // Audio processing to swap the left and right channels. |
| 255 | Settable<bool> stereo_swapping; |
Henrik Lundin | 64dad83 | 2015-05-11 12:44:23 +0200 | [diff] [blame^] | 256 | // Audio receiver jitter buffer (NetEq) max capacity in number of packets. |
| 257 | Settable<int> audio_jitter_buffer_max_packets; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 258 | // Audio processing to detect typing. |
| 259 | Settable<bool> typing_detection; |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 260 | Settable<bool> aecm_generate_comfort_noise; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 261 | Settable<bool> conference_mode; |
| 262 | Settable<int> adjust_agc_delta; |
| 263 | Settable<bool> experimental_agc; |
| 264 | Settable<bool> experimental_aec; |
Bjorn Volcker | bf395c1 | 2015-03-25 22:45:56 +0100 | [diff] [blame] | 265 | Settable<bool> delay_agnostic_aec; |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 266 | Settable<bool> experimental_ns; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 267 | Settable<bool> aec_dump; |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 268 | // Note that tx_agc_* only applies to non-experimental AGC. |
| 269 | Settable<uint16> tx_agc_target_dbov; |
| 270 | Settable<uint16> tx_agc_digital_compression_gain; |
| 271 | Settable<bool> tx_agc_limiter; |
| 272 | Settable<uint16> rx_agc_target_dbov; |
| 273 | Settable<uint16> rx_agc_digital_compression_gain; |
| 274 | Settable<bool> rx_agc_limiter; |
| 275 | Settable<uint32> recording_sample_rate; |
| 276 | Settable<uint32> playout_sample_rate; |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 277 | // Set DSCP value for packet sent from audio channel. |
| 278 | Settable<bool> dscp; |
buildbot@webrtc.org | b4c7b09 | 2014-08-25 12:11:58 +0000 | [diff] [blame] | 279 | // Enable combined audio+bandwidth BWE. |
| 280 | Settable<bool> combined_audio_video_bwe; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 281 | }; |
| 282 | |
| 283 | // Options that can be applied to a VideoMediaChannel or a VideoMediaEngine. |
| 284 | // Used to be flags, but that makes it hard to selectively apply options. |
| 285 | // We are moving all of the setting of options to structs like this, |
| 286 | // but some things currently still use flags. |
| 287 | struct VideoOptions { |
henrike@webrtc.org | f45a550 | 2014-03-13 18:51:34 +0000 | [diff] [blame] | 288 | enum HighestBitrate { |
| 289 | NORMAL, |
| 290 | HIGH, |
| 291 | VERY_HIGH |
| 292 | }; |
| 293 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 294 | VideoOptions() { |
| 295 | process_adaptation_threshhold.Set(kProcessCpuThreshold); |
| 296 | system_low_adaptation_threshhold.Set(kLowSystemCpuThreshold); |
| 297 | system_high_adaptation_threshhold.Set(kHighSystemCpuThreshold); |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 298 | unsignalled_recv_stream_limit.Set(kNumDefaultUnsignalledVideoRecvStreams); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | void SetAll(const VideoOptions& change) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 302 | adapt_input_to_cpu_usage.SetFrom(change.adapt_input_to_cpu_usage); |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 303 | adapt_cpu_with_smoothing.SetFrom(change.adapt_cpu_with_smoothing); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 304 | video_adapt_third.SetFrom(change.video_adapt_third); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 305 | video_noise_reduction.SetFrom(change.video_noise_reduction); |
wu@webrtc.org | 1e6cb2c | 2014-03-24 17:01:50 +0000 | [diff] [blame] | 306 | video_start_bitrate.SetFrom(change.video_start_bitrate); |
henrike@webrtc.org | f45a550 | 2014-03-13 18:51:34 +0000 | [diff] [blame] | 307 | video_highest_bitrate.SetFrom(change.video_highest_bitrate); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 308 | cpu_overuse_detection.SetFrom(change.cpu_overuse_detection); |
henrike@webrtc.org | e9793ab | 2014-03-18 14:36:23 +0000 | [diff] [blame] | 309 | cpu_underuse_threshold.SetFrom(change.cpu_underuse_threshold); |
| 310 | cpu_overuse_threshold.SetFrom(change.cpu_overuse_threshold); |
buildbot@webrtc.org | 27626a6 | 2014-06-16 13:39:40 +0000 | [diff] [blame] | 311 | cpu_underuse_encode_rsd_threshold.SetFrom( |
| 312 | change.cpu_underuse_encode_rsd_threshold); |
| 313 | cpu_overuse_encode_rsd_threshold.SetFrom( |
| 314 | change.cpu_overuse_encode_rsd_threshold); |
henrike@webrtc.org | b0ecc1c | 2014-03-26 22:44:28 +0000 | [diff] [blame] | 315 | cpu_overuse_encode_usage.SetFrom(change.cpu_overuse_encode_usage); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 316 | conference_mode.SetFrom(change.conference_mode); |
| 317 | process_adaptation_threshhold.SetFrom(change.process_adaptation_threshhold); |
| 318 | system_low_adaptation_threshhold.SetFrom( |
| 319 | change.system_low_adaptation_threshhold); |
| 320 | system_high_adaptation_threshhold.SetFrom( |
| 321 | change.system_high_adaptation_threshhold); |
| 322 | buffered_mode_latency.SetFrom(change.buffered_mode_latency); |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 323 | dscp.SetFrom(change.dscp); |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 324 | suspend_below_min_bitrate.SetFrom(change.suspend_below_min_bitrate); |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 325 | unsignalled_recv_stream_limit.SetFrom(change.unsignalled_recv_stream_limit); |
henrike@webrtc.org | 10bd88e | 2014-03-11 21:07:25 +0000 | [diff] [blame] | 326 | use_simulcast_adapter.SetFrom(change.use_simulcast_adapter); |
henrike@webrtc.org | dce3feb | 2014-03-26 01:17:30 +0000 | [diff] [blame] | 327 | screencast_min_bitrate.SetFrom(change.screencast_min_bitrate); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | bool operator==(const VideoOptions& o) const { |
pbos@webrtc.org | 43336b6 | 2014-10-14 19:12:06 +0000 | [diff] [blame] | 331 | return adapt_input_to_cpu_usage == o.adapt_input_to_cpu_usage && |
| 332 | adapt_cpu_with_smoothing == o.adapt_cpu_with_smoothing && |
| 333 | video_adapt_third == o.video_adapt_third && |
| 334 | video_noise_reduction == o.video_noise_reduction && |
| 335 | video_start_bitrate == o.video_start_bitrate && |
pbos@webrtc.org | 43336b6 | 2014-10-14 19:12:06 +0000 | [diff] [blame] | 336 | video_highest_bitrate == o.video_highest_bitrate && |
| 337 | cpu_overuse_detection == o.cpu_overuse_detection && |
| 338 | cpu_underuse_threshold == o.cpu_underuse_threshold && |
| 339 | cpu_overuse_threshold == o.cpu_overuse_threshold && |
| 340 | cpu_underuse_encode_rsd_threshold == |
| 341 | o.cpu_underuse_encode_rsd_threshold && |
| 342 | cpu_overuse_encode_rsd_threshold == |
| 343 | o.cpu_overuse_encode_rsd_threshold && |
| 344 | cpu_overuse_encode_usage == o.cpu_overuse_encode_usage && |
| 345 | conference_mode == o.conference_mode && |
| 346 | process_adaptation_threshhold == o.process_adaptation_threshhold && |
| 347 | system_low_adaptation_threshhold == |
| 348 | o.system_low_adaptation_threshhold && |
| 349 | system_high_adaptation_threshhold == |
| 350 | o.system_high_adaptation_threshhold && |
| 351 | buffered_mode_latency == o.buffered_mode_latency && dscp == o.dscp && |
| 352 | suspend_below_min_bitrate == o.suspend_below_min_bitrate && |
| 353 | unsignalled_recv_stream_limit == o.unsignalled_recv_stream_limit && |
| 354 | use_simulcast_adapter == o.use_simulcast_adapter && |
stefan@webrtc.org | 742386a | 2014-12-19 15:33:17 +0000 | [diff] [blame] | 355 | screencast_min_bitrate == o.screencast_min_bitrate; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | std::string ToString() const { |
| 359 | std::ostringstream ost; |
| 360 | ost << "VideoOptions {"; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 361 | ost << ToStringIfSet("cpu adaption", adapt_input_to_cpu_usage); |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 362 | ost << ToStringIfSet("cpu adaptation smoothing", adapt_cpu_with_smoothing); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 363 | ost << ToStringIfSet("video adapt third", video_adapt_third); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 364 | ost << ToStringIfSet("noise reduction", video_noise_reduction); |
wu@webrtc.org | 1e6cb2c | 2014-03-24 17:01:50 +0000 | [diff] [blame] | 365 | ost << ToStringIfSet("start bitrate", video_start_bitrate); |
henrike@webrtc.org | f45a550 | 2014-03-13 18:51:34 +0000 | [diff] [blame] | 366 | ost << ToStringIfSet("highest video bitrate", video_highest_bitrate); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 367 | ost << ToStringIfSet("cpu overuse detection", cpu_overuse_detection); |
henrike@webrtc.org | e9793ab | 2014-03-18 14:36:23 +0000 | [diff] [blame] | 368 | ost << ToStringIfSet("cpu underuse threshold", cpu_underuse_threshold); |
| 369 | ost << ToStringIfSet("cpu overuse threshold", cpu_overuse_threshold); |
buildbot@webrtc.org | 27626a6 | 2014-06-16 13:39:40 +0000 | [diff] [blame] | 370 | ost << ToStringIfSet("cpu underuse encode rsd threshold", |
| 371 | cpu_underuse_encode_rsd_threshold); |
| 372 | ost << ToStringIfSet("cpu overuse encode rsd threshold", |
| 373 | cpu_overuse_encode_rsd_threshold); |
henrike@webrtc.org | b0ecc1c | 2014-03-26 22:44:28 +0000 | [diff] [blame] | 374 | ost << ToStringIfSet("cpu overuse encode usage", |
| 375 | cpu_overuse_encode_usage); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 376 | ost << ToStringIfSet("conference mode", conference_mode); |
| 377 | ost << ToStringIfSet("process", process_adaptation_threshhold); |
| 378 | ost << ToStringIfSet("low", system_low_adaptation_threshhold); |
| 379 | ost << ToStringIfSet("high", system_high_adaptation_threshhold); |
| 380 | ost << ToStringIfSet("buffered mode latency", buffered_mode_latency); |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 381 | ost << ToStringIfSet("dscp", dscp); |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 382 | ost << ToStringIfSet("suspend below min bitrate", |
| 383 | suspend_below_min_bitrate); |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 384 | ost << ToStringIfSet("num channels for early receive", |
| 385 | unsignalled_recv_stream_limit); |
henrike@webrtc.org | 10bd88e | 2014-03-11 21:07:25 +0000 | [diff] [blame] | 386 | ost << ToStringIfSet("use simulcast adapter", use_simulcast_adapter); |
henrike@webrtc.org | dce3feb | 2014-03-26 01:17:30 +0000 | [diff] [blame] | 387 | ost << ToStringIfSet("screencast min bitrate", screencast_min_bitrate); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 388 | ost << "}"; |
| 389 | return ost.str(); |
| 390 | } |
| 391 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 392 | // Enable CPU adaptation? |
| 393 | Settable<bool> adapt_input_to_cpu_usage; |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 394 | // Enable CPU adaptation smoothing? |
| 395 | Settable<bool> adapt_cpu_with_smoothing; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 396 | // Enable video adapt third? |
| 397 | Settable<bool> video_adapt_third; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 398 | // Enable denoising? |
| 399 | Settable<bool> video_noise_reduction; |
wu@webrtc.org | 1e6cb2c | 2014-03-24 17:01:50 +0000 | [diff] [blame] | 400 | // Experimental: Enable WebRtc higher start bitrate? |
| 401 | Settable<int> video_start_bitrate; |
henrike@webrtc.org | f45a550 | 2014-03-13 18:51:34 +0000 | [diff] [blame] | 402 | // Set highest bitrate mode for video. |
wu@webrtc.org | cfe5e9c | 2014-03-27 17:03:58 +0000 | [diff] [blame] | 403 | Settable<HighestBitrate> video_highest_bitrate; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 404 | // Enable WebRTC Cpu Overuse Detection, which is a new version of the CPU |
| 405 | // adaptation algorithm. So this option will override the |
| 406 | // |adapt_input_to_cpu_usage|. |
| 407 | Settable<bool> cpu_overuse_detection; |
buildbot@webrtc.org | 27626a6 | 2014-06-16 13:39:40 +0000 | [diff] [blame] | 408 | // Low threshold (t1) for cpu overuse adaptation. (Adapt up) |
| 409 | // Metric: encode usage (m1). m1 < t1 => underuse. |
henrike@webrtc.org | e9793ab | 2014-03-18 14:36:23 +0000 | [diff] [blame] | 410 | Settable<int> cpu_underuse_threshold; |
buildbot@webrtc.org | 27626a6 | 2014-06-16 13:39:40 +0000 | [diff] [blame] | 411 | // High threshold (t1) for cpu overuse adaptation. (Adapt down) |
| 412 | // Metric: encode usage (m1). m1 > t1 => overuse. |
henrike@webrtc.org | e9793ab | 2014-03-18 14:36:23 +0000 | [diff] [blame] | 413 | Settable<int> cpu_overuse_threshold; |
buildbot@webrtc.org | 27626a6 | 2014-06-16 13:39:40 +0000 | [diff] [blame] | 414 | // Low threshold (t2) for cpu overuse adaptation. (Adapt up) |
| 415 | // Metric: relative standard deviation of encode time (m2). |
| 416 | // Optional threshold. If set, (m1 < t1 && m2 < t2) => underuse. |
| 417 | // Note: t2 will have no effect if t1 is not set. |
| 418 | Settable<int> cpu_underuse_encode_rsd_threshold; |
| 419 | // High threshold (t2) for cpu overuse adaptation. (Adapt down) |
| 420 | // Metric: relative standard deviation of encode time (m2). |
| 421 | // Optional threshold. If set, (m1 > t1 || m2 > t2) => overuse. |
| 422 | // Note: t2 will have no effect if t1 is not set. |
| 423 | Settable<int> cpu_overuse_encode_rsd_threshold; |
henrike@webrtc.org | b0ecc1c | 2014-03-26 22:44:28 +0000 | [diff] [blame] | 424 | // Use encode usage for cpu detection. |
| 425 | Settable<bool> cpu_overuse_encode_usage; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 426 | // Use conference mode? |
| 427 | Settable<bool> conference_mode; |
| 428 | // Threshhold for process cpu adaptation. (Process limit) |
pthatcher@webrtc.org | 40b276e | 2014-12-12 02:44:30 +0000 | [diff] [blame] | 429 | Settable<float> process_adaptation_threshhold; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 430 | // Low threshhold for cpu adaptation. (Adapt up) |
pthatcher@webrtc.org | 40b276e | 2014-12-12 02:44:30 +0000 | [diff] [blame] | 431 | Settable<float> system_low_adaptation_threshhold; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 432 | // High threshhold for cpu adaptation. (Adapt down) |
pthatcher@webrtc.org | 40b276e | 2014-12-12 02:44:30 +0000 | [diff] [blame] | 433 | Settable<float> system_high_adaptation_threshhold; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 434 | // Specify buffered mode latency in milliseconds. |
| 435 | Settable<int> buffered_mode_latency; |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 436 | // Set DSCP value for packet sent from video channel. |
| 437 | Settable<bool> dscp; |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 438 | // Enable WebRTC suspension of video. No video frames will be sent when the |
| 439 | // bitrate is below the configured minimum bitrate. |
| 440 | Settable<bool> suspend_below_min_bitrate; |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 441 | // Limit on the number of early receive channels that can be created. |
| 442 | Settable<int> unsignalled_recv_stream_limit; |
henrike@webrtc.org | 10bd88e | 2014-03-11 21:07:25 +0000 | [diff] [blame] | 443 | // Enable use of simulcast adapter. |
| 444 | Settable<bool> use_simulcast_adapter; |
henrike@webrtc.org | dce3feb | 2014-03-26 01:17:30 +0000 | [diff] [blame] | 445 | // Force screencast to use a minimum bitrate |
| 446 | Settable<int> screencast_min_bitrate; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 447 | }; |
| 448 | |
| 449 | // A class for playing out soundclips. |
| 450 | class SoundclipMedia { |
| 451 | public: |
| 452 | enum SoundclipFlags { |
| 453 | SF_LOOP = 1, |
| 454 | }; |
| 455 | |
| 456 | virtual ~SoundclipMedia() {} |
| 457 | |
| 458 | // Plays a sound out to the speakers with the given audio stream. The stream |
| 459 | // must be 16-bit little-endian 16 kHz PCM. If a stream is already playing |
| 460 | // on this SoundclipMedia, it is stopped. If clip is NULL, nothing is played. |
| 461 | // Returns whether it was successful. |
| 462 | virtual bool PlaySound(const char *clip, int len, int flags) = 0; |
| 463 | }; |
| 464 | |
| 465 | struct RtpHeaderExtension { |
| 466 | RtpHeaderExtension() : id(0) {} |
| 467 | RtpHeaderExtension(const std::string& u, int i) : uri(u), id(i) {} |
| 468 | std::string uri; |
| 469 | int id; |
| 470 | // TODO(juberti): SendRecv direction; |
| 471 | |
| 472 | bool operator==(const RtpHeaderExtension& ext) const { |
| 473 | // id is a reserved word in objective-c. Therefore the id attribute has to |
| 474 | // be a fully qualified name in order to compile on IOS. |
| 475 | return this->id == ext.id && |
| 476 | uri == ext.uri; |
| 477 | } |
| 478 | }; |
| 479 | |
| 480 | // Returns the named header extension if found among all extensions, NULL |
| 481 | // otherwise. |
| 482 | inline const RtpHeaderExtension* FindHeaderExtension( |
| 483 | const std::vector<RtpHeaderExtension>& extensions, |
| 484 | const std::string& name) { |
| 485 | for (std::vector<RtpHeaderExtension>::const_iterator it = extensions.begin(); |
| 486 | it != extensions.end(); ++it) { |
| 487 | if (it->uri == name) |
| 488 | return &(*it); |
| 489 | } |
| 490 | return NULL; |
| 491 | } |
| 492 | |
| 493 | enum MediaChannelOptions { |
| 494 | // Tune the stream for conference mode. |
| 495 | OPT_CONFERENCE = 0x0001 |
| 496 | }; |
| 497 | |
| 498 | enum VoiceMediaChannelOptions { |
| 499 | // Tune the audio stream for vcs with different target levels. |
| 500 | OPT_AGC_MINUS_10DB = 0x80000000 |
| 501 | }; |
| 502 | |
| 503 | // DTMF flags to control if a DTMF tone should be played and/or sent. |
| 504 | enum DtmfFlags { |
| 505 | DF_PLAY = 0x01, |
| 506 | DF_SEND = 0x02, |
| 507 | }; |
| 508 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 509 | class MediaChannel : public sigslot::has_slots<> { |
| 510 | public: |
| 511 | class NetworkInterface { |
| 512 | public: |
| 513 | enum SocketType { ST_RTP, ST_RTCP }; |
mallinath@webrtc.org | 1112c30 | 2013-09-23 20:34:45 +0000 | [diff] [blame] | 514 | virtual bool SendPacket( |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 515 | rtc::Buffer* packet, |
| 516 | rtc::DiffServCodePoint dscp = rtc::DSCP_NO_CHANGE) = 0; |
mallinath@webrtc.org | 1112c30 | 2013-09-23 20:34:45 +0000 | [diff] [blame] | 517 | virtual bool SendRtcp( |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 518 | rtc::Buffer* packet, |
| 519 | rtc::DiffServCodePoint dscp = rtc::DSCP_NO_CHANGE) = 0; |
| 520 | virtual int SetOption(SocketType type, rtc::Socket::Option opt, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 521 | int option) = 0; |
| 522 | virtual ~NetworkInterface() {} |
| 523 | }; |
| 524 | |
| 525 | MediaChannel() : network_interface_(NULL) {} |
| 526 | virtual ~MediaChannel() {} |
| 527 | |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 528 | // Sets the abstract interface class for sending RTP/RTCP data. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 529 | virtual void SetInterface(NetworkInterface *iface) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 530 | rtc::CritScope cs(&network_interface_crit_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 531 | network_interface_ = iface; |
| 532 | } |
| 533 | |
| 534 | // Called when a RTP packet is received. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 535 | virtual void OnPacketReceived(rtc::Buffer* packet, |
| 536 | const rtc::PacketTime& packet_time) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 537 | // Called when a RTCP packet is received. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 538 | virtual void OnRtcpReceived(rtc::Buffer* packet, |
| 539 | const rtc::PacketTime& packet_time) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 540 | // Called when the socket's ability to send has changed. |
| 541 | virtual void OnReadyToSend(bool ready) = 0; |
| 542 | // Creates a new outgoing media stream with SSRCs and CNAME as described |
| 543 | // by sp. |
| 544 | virtual bool AddSendStream(const StreamParams& sp) = 0; |
| 545 | // Removes an outgoing media stream. |
| 546 | // ssrc must be the first SSRC of the media stream if the stream uses |
| 547 | // multiple SSRCs. |
| 548 | virtual bool RemoveSendStream(uint32 ssrc) = 0; |
| 549 | // Creates a new incoming media stream with SSRCs and CNAME as described |
| 550 | // by sp. |
| 551 | virtual bool AddRecvStream(const StreamParams& sp) = 0; |
| 552 | // Removes an incoming media stream. |
| 553 | // ssrc must be the first SSRC of the media stream if the stream uses |
| 554 | // multiple SSRCs. |
| 555 | virtual bool RemoveRecvStream(uint32 ssrc) = 0; |
| 556 | |
| 557 | // Mutes the channel. |
| 558 | virtual bool MuteStream(uint32 ssrc, bool on) = 0; |
| 559 | |
| 560 | // Sets the RTP extension headers and IDs to use when sending RTP. |
| 561 | virtual bool SetRecvRtpHeaderExtensions( |
| 562 | const std::vector<RtpHeaderExtension>& extensions) = 0; |
| 563 | virtual bool SetSendRtpHeaderExtensions( |
| 564 | const std::vector<RtpHeaderExtension>& extensions) = 0; |
mallinath@webrtc.org | 92fdfeb | 2014-02-17 18:49:41 +0000 | [diff] [blame] | 565 | // Returns the absoulte sendtime extension id value from media channel. |
| 566 | virtual int GetRtpSendTimeExtnId() const { |
| 567 | return -1; |
| 568 | } |
sergeyu@chromium.org | 4b26e2e | 2014-01-15 23:15:54 +0000 | [diff] [blame] | 569 | // Sets the maximum allowed bandwidth to use when sending data. |
| 570 | virtual bool SetMaxSendBandwidth(int bps) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 571 | |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 572 | // Base method to send packet using NetworkInterface. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 573 | bool SendPacket(rtc::Buffer* packet) { |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 574 | return DoSendPacket(packet, false); |
| 575 | } |
| 576 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 577 | bool SendRtcp(rtc::Buffer* packet) { |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 578 | return DoSendPacket(packet, true); |
| 579 | } |
| 580 | |
| 581 | int SetOption(NetworkInterface::SocketType type, |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 582 | rtc::Socket::Option opt, |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 583 | int option) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 584 | rtc::CritScope cs(&network_interface_crit_); |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 585 | if (!network_interface_) |
| 586 | return -1; |
| 587 | |
| 588 | return network_interface_->SetOption(type, opt, option); |
| 589 | } |
| 590 | |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 591 | protected: |
| 592 | // This method sets DSCP |value| on both RTP and RTCP channels. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 593 | int SetDscp(rtc::DiffServCodePoint value) { |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 594 | int ret; |
| 595 | ret = SetOption(NetworkInterface::ST_RTP, |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 596 | rtc::Socket::OPT_DSCP, |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 597 | value); |
| 598 | if (ret == 0) { |
| 599 | ret = SetOption(NetworkInterface::ST_RTCP, |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 600 | rtc::Socket::OPT_DSCP, |
wu@webrtc.org | de30501 | 2013-10-31 15:40:38 +0000 | [diff] [blame] | 601 | value); |
| 602 | } |
| 603 | return ret; |
| 604 | } |
| 605 | |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 606 | private: |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 607 | bool DoSendPacket(rtc::Buffer* packet, bool rtcp) { |
| 608 | rtc::CritScope cs(&network_interface_crit_); |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 609 | if (!network_interface_) |
| 610 | return false; |
| 611 | |
| 612 | return (!rtcp) ? network_interface_->SendPacket(packet) : |
| 613 | network_interface_->SendRtcp(packet); |
| 614 | } |
| 615 | |
| 616 | // |network_interface_| can be accessed from the worker_thread and |
| 617 | // from any MediaEngine threads. This critical section is to protect accessing |
| 618 | // of network_interface_ object. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 619 | rtc::CriticalSection network_interface_crit_; |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 620 | NetworkInterface* network_interface_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 621 | }; |
| 622 | |
| 623 | enum SendFlags { |
| 624 | SEND_NOTHING, |
| 625 | SEND_RINGBACKTONE, |
| 626 | SEND_MICROPHONE |
| 627 | }; |
| 628 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 629 | // The stats information is structured as follows: |
| 630 | // Media are represented by either MediaSenderInfo or MediaReceiverInfo. |
| 631 | // Media contains a vector of SSRC infos that are exclusively used by this |
| 632 | // media. (SSRCs shared between media streams can't be represented.) |
| 633 | |
| 634 | // Information about an SSRC. |
| 635 | // This data may be locally recorded, or received in an RTCP SR or RR. |
| 636 | struct SsrcSenderInfo { |
| 637 | SsrcSenderInfo() |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 638 | : ssrc(0), |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 639 | timestamp(0) { |
| 640 | } |
| 641 | uint32 ssrc; |
| 642 | double timestamp; // NTP timestamp, represented as seconds since epoch. |
| 643 | }; |
| 644 | |
| 645 | struct SsrcReceiverInfo { |
| 646 | SsrcReceiverInfo() |
| 647 | : ssrc(0), |
| 648 | timestamp(0) { |
| 649 | } |
| 650 | uint32 ssrc; |
| 651 | double timestamp; |
| 652 | }; |
| 653 | |
| 654 | struct MediaSenderInfo { |
| 655 | MediaSenderInfo() |
| 656 | : bytes_sent(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 657 | packets_sent(0), |
| 658 | packets_lost(0), |
| 659 | fraction_lost(0.0), |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 660 | rtt_ms(0) { |
| 661 | } |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 662 | void add_ssrc(const SsrcSenderInfo& stat) { |
| 663 | local_stats.push_back(stat); |
| 664 | } |
| 665 | // Temporary utility function for call sites that only provide SSRC. |
| 666 | // As more info is added into SsrcSenderInfo, this function should go away. |
| 667 | void add_ssrc(uint32 ssrc) { |
| 668 | SsrcSenderInfo stat; |
| 669 | stat.ssrc = ssrc; |
| 670 | add_ssrc(stat); |
| 671 | } |
| 672 | // Utility accessor for clients that are only interested in ssrc numbers. |
| 673 | std::vector<uint32> ssrcs() const { |
| 674 | std::vector<uint32> retval; |
| 675 | for (std::vector<SsrcSenderInfo>::const_iterator it = local_stats.begin(); |
| 676 | it != local_stats.end(); ++it) { |
| 677 | retval.push_back(it->ssrc); |
| 678 | } |
| 679 | return retval; |
| 680 | } |
| 681 | // Utility accessor for clients that make the assumption only one ssrc |
| 682 | // exists per media. |
| 683 | // This will eventually go away. |
| 684 | uint32 ssrc() const { |
| 685 | if (local_stats.size() > 0) { |
| 686 | return local_stats[0].ssrc; |
| 687 | } else { |
| 688 | return 0; |
| 689 | } |
| 690 | } |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 691 | int64 bytes_sent; |
| 692 | int packets_sent; |
| 693 | int packets_lost; |
| 694 | float fraction_lost; |
pkasting@chromium.org | 16825b1 | 2015-01-12 21:51:21 +0000 | [diff] [blame] | 695 | int64_t rtt_ms; |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 696 | std::string codec_name; |
| 697 | std::vector<SsrcSenderInfo> local_stats; |
| 698 | std::vector<SsrcReceiverInfo> remote_stats; |
| 699 | }; |
| 700 | |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 701 | template<class T> |
| 702 | struct VariableInfo { |
| 703 | VariableInfo() |
| 704 | : min_val(), |
| 705 | mean(0.0), |
| 706 | max_val(), |
| 707 | variance(0.0) { |
| 708 | } |
| 709 | T min_val; |
| 710 | double mean; |
| 711 | T max_val; |
| 712 | double variance; |
| 713 | }; |
| 714 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 715 | struct MediaReceiverInfo { |
| 716 | MediaReceiverInfo() |
| 717 | : bytes_rcvd(0), |
| 718 | packets_rcvd(0), |
| 719 | packets_lost(0), |
| 720 | fraction_lost(0.0) { |
| 721 | } |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 722 | void add_ssrc(const SsrcReceiverInfo& stat) { |
| 723 | local_stats.push_back(stat); |
| 724 | } |
| 725 | // Temporary utility function for call sites that only provide SSRC. |
| 726 | // As more info is added into SsrcSenderInfo, this function should go away. |
| 727 | void add_ssrc(uint32 ssrc) { |
| 728 | SsrcReceiverInfo stat; |
| 729 | stat.ssrc = ssrc; |
| 730 | add_ssrc(stat); |
| 731 | } |
| 732 | std::vector<uint32> ssrcs() const { |
| 733 | std::vector<uint32> retval; |
| 734 | for (std::vector<SsrcReceiverInfo>::const_iterator it = local_stats.begin(); |
| 735 | it != local_stats.end(); ++it) { |
| 736 | retval.push_back(it->ssrc); |
| 737 | } |
| 738 | return retval; |
| 739 | } |
| 740 | // Utility accessor for clients that make the assumption only one ssrc |
| 741 | // exists per media. |
| 742 | // This will eventually go away. |
| 743 | uint32 ssrc() const { |
| 744 | if (local_stats.size() > 0) { |
| 745 | return local_stats[0].ssrc; |
| 746 | } else { |
| 747 | return 0; |
| 748 | } |
| 749 | } |
| 750 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 751 | int64 bytes_rcvd; |
| 752 | int packets_rcvd; |
| 753 | int packets_lost; |
| 754 | float fraction_lost; |
buildbot@webrtc.org | 7e71b77 | 2014-06-13 01:14:01 +0000 | [diff] [blame] | 755 | std::string codec_name; |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 756 | std::vector<SsrcReceiverInfo> local_stats; |
| 757 | std::vector<SsrcSenderInfo> remote_stats; |
| 758 | }; |
| 759 | |
| 760 | struct VoiceSenderInfo : public MediaSenderInfo { |
| 761 | VoiceSenderInfo() |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 762 | : ext_seqnum(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 763 | jitter_ms(0), |
| 764 | audio_level(0), |
| 765 | aec_quality_min(0.0), |
| 766 | echo_delay_median_ms(0), |
| 767 | echo_delay_std_ms(0), |
| 768 | echo_return_loss(0), |
wu@webrtc.org | 967bfff | 2013-09-19 05:49:50 +0000 | [diff] [blame] | 769 | echo_return_loss_enhancement(0), |
| 770 | typing_noise_detected(false) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 771 | } |
| 772 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 773 | int ext_seqnum; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 774 | int jitter_ms; |
| 775 | int audio_level; |
| 776 | float aec_quality_min; |
| 777 | int echo_delay_median_ms; |
| 778 | int echo_delay_std_ms; |
| 779 | int echo_return_loss; |
| 780 | int echo_return_loss_enhancement; |
wu@webrtc.org | 967bfff | 2013-09-19 05:49:50 +0000 | [diff] [blame] | 781 | bool typing_noise_detected; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 782 | }; |
| 783 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 784 | struct VoiceReceiverInfo : public MediaReceiverInfo { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 785 | VoiceReceiverInfo() |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 786 | : ext_seqnum(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 787 | jitter_ms(0), |
| 788 | jitter_buffer_ms(0), |
| 789 | jitter_buffer_preferred_ms(0), |
| 790 | delay_estimate_ms(0), |
| 791 | audio_level(0), |
henrike@webrtc.org | b8c254a | 2014-02-14 23:38:45 +0000 | [diff] [blame] | 792 | expand_rate(0), |
minyue@webrtc.org | c0bd7be | 2015-02-18 15:24:13 +0000 | [diff] [blame] | 793 | speech_expand_rate(0), |
| 794 | secondary_decoded_rate(0), |
henrike@webrtc.org | b8c254a | 2014-02-14 23:38:45 +0000 | [diff] [blame] | 795 | decoding_calls_to_silence_generator(0), |
| 796 | decoding_calls_to_neteq(0), |
| 797 | decoding_normal(0), |
| 798 | decoding_plc(0), |
| 799 | decoding_cng(0), |
buildbot@webrtc.org | b525a9d | 2014-06-03 09:42:15 +0000 | [diff] [blame] | 800 | decoding_plc_cng(0), |
| 801 | capture_start_ntp_time_ms(-1) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 802 | } |
| 803 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 804 | int ext_seqnum; |
| 805 | int jitter_ms; |
| 806 | int jitter_buffer_ms; |
| 807 | int jitter_buffer_preferred_ms; |
| 808 | int delay_estimate_ms; |
| 809 | int audio_level; |
minyue@webrtc.org | c0bd7be | 2015-02-18 15:24:13 +0000 | [diff] [blame] | 810 | // fraction of synthesized audio inserted through expansion. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 811 | float expand_rate; |
minyue@webrtc.org | c0bd7be | 2015-02-18 15:24:13 +0000 | [diff] [blame] | 812 | // fraction of synthesized speech inserted through expansion. |
| 813 | float speech_expand_rate; |
| 814 | // fraction of data out of secondary decoding, including FEC and RED. |
| 815 | float secondary_decoded_rate; |
henrike@webrtc.org | b8c254a | 2014-02-14 23:38:45 +0000 | [diff] [blame] | 816 | int decoding_calls_to_silence_generator; |
| 817 | int decoding_calls_to_neteq; |
| 818 | int decoding_normal; |
| 819 | int decoding_plc; |
| 820 | int decoding_cng; |
| 821 | int decoding_plc_cng; |
buildbot@webrtc.org | b525a9d | 2014-06-03 09:42:15 +0000 | [diff] [blame] | 822 | // Estimated capture start time in NTP time in ms. |
| 823 | int64 capture_start_ntp_time_ms; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 824 | }; |
| 825 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 826 | struct VideoSenderInfo : public MediaSenderInfo { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 827 | VideoSenderInfo() |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 828 | : packets_cached(0), |
| 829 | firs_rcvd(0), |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 830 | plis_rcvd(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 831 | nacks_rcvd(0), |
wu@webrtc.org | 987f2c9 | 2014-03-28 16:22:19 +0000 | [diff] [blame] | 832 | input_frame_width(0), |
| 833 | input_frame_height(0), |
| 834 | send_frame_width(0), |
| 835 | send_frame_height(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 836 | framerate_input(0), |
| 837 | framerate_sent(0), |
| 838 | nominal_bitrate(0), |
| 839 | preferred_bitrate(0), |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 840 | adapt_reason(0), |
buildbot@webrtc.org | 71dffb7 | 2014-06-24 07:24:49 +0000 | [diff] [blame] | 841 | adapt_changes(0), |
wu@webrtc.org | 9caf276 | 2013-12-11 18:25:07 +0000 | [diff] [blame] | 842 | avg_encode_ms(0), |
Peter Boström | 8ed6a4b | 2015-03-27 10:01:02 +0100 | [diff] [blame] | 843 | encode_usage_percent(0) { |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 844 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 845 | |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 846 | std::vector<SsrcGroup> ssrc_groups; |
| 847 | int packets_cached; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 848 | int firs_rcvd; |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 849 | int plis_rcvd; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 850 | int nacks_rcvd; |
wu@webrtc.org | 987f2c9 | 2014-03-28 16:22:19 +0000 | [diff] [blame] | 851 | int input_frame_width; |
| 852 | int input_frame_height; |
| 853 | int send_frame_width; |
| 854 | int send_frame_height; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 855 | int framerate_input; |
| 856 | int framerate_sent; |
| 857 | int nominal_bitrate; |
| 858 | int preferred_bitrate; |
| 859 | int adapt_reason; |
buildbot@webrtc.org | 71dffb7 | 2014-06-24 07:24:49 +0000 | [diff] [blame] | 860 | int adapt_changes; |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 861 | int avg_encode_ms; |
wu@webrtc.org | 9caf276 | 2013-12-11 18:25:07 +0000 | [diff] [blame] | 862 | int encode_usage_percent; |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 863 | VariableInfo<int> adapt_frame_drops; |
| 864 | VariableInfo<int> effects_frame_drops; |
| 865 | VariableInfo<double> capturer_frame_time; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 866 | }; |
| 867 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 868 | struct VideoReceiverInfo : public MediaReceiverInfo { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 869 | VideoReceiverInfo() |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 870 | : packets_concealed(0), |
| 871 | firs_sent(0), |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 872 | plis_sent(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 873 | nacks_sent(0), |
| 874 | frame_width(0), |
| 875 | frame_height(0), |
| 876 | framerate_rcvd(0), |
| 877 | framerate_decoded(0), |
| 878 | framerate_output(0), |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 879 | framerate_render_input(0), |
| 880 | framerate_render_output(0), |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 881 | decode_ms(0), |
| 882 | max_decode_ms(0), |
| 883 | jitter_buffer_ms(0), |
| 884 | min_playout_delay_ms(0), |
| 885 | render_delay_ms(0), |
| 886 | target_delay_ms(0), |
buildbot@webrtc.org | 0581f0b | 2014-05-06 21:36:31 +0000 | [diff] [blame] | 887 | current_delay_ms(0), |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 888 | capture_start_ntp_time_ms(-1) { |
| 889 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 890 | |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 891 | std::vector<SsrcGroup> ssrc_groups; |
| 892 | int packets_concealed; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 893 | int firs_sent; |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 894 | int plis_sent; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 895 | int nacks_sent; |
| 896 | int frame_width; |
| 897 | int frame_height; |
| 898 | int framerate_rcvd; |
| 899 | int framerate_decoded; |
| 900 | int framerate_output; |
pbos@webrtc.org | 1ed6224 | 2015-02-19 13:57:03 +0000 | [diff] [blame] | 901 | // Framerate as sent to the renderer. |
| 902 | int framerate_render_input; |
| 903 | // Framerate that the renderer reports. |
| 904 | int framerate_render_output; |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 905 | |
| 906 | // All stats below are gathered per-VideoReceiver, but some will be correlated |
| 907 | // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC |
| 908 | // structures, reflect this in the new layout. |
| 909 | |
| 910 | // Current frame decode latency. |
| 911 | int decode_ms; |
| 912 | // Maximum observed frame decode latency. |
| 913 | int max_decode_ms; |
| 914 | // Jitter (network-related) latency. |
| 915 | int jitter_buffer_ms; |
| 916 | // Requested minimum playout latency. |
| 917 | int min_playout_delay_ms; |
| 918 | // Requested latency to account for rendering delay. |
| 919 | int render_delay_ms; |
| 920 | // Target overall delay: network+decode+render, accounting for |
| 921 | // min_playout_delay_ms. |
| 922 | int target_delay_ms; |
| 923 | // Current overall delay, possibly ramping towards target_delay_ms. |
| 924 | int current_delay_ms; |
buildbot@webrtc.org | 0581f0b | 2014-05-06 21:36:31 +0000 | [diff] [blame] | 925 | |
| 926 | // Estimated capture start time in NTP time in ms. |
| 927 | int64 capture_start_ntp_time_ms; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 928 | }; |
| 929 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 930 | struct DataSenderInfo : public MediaSenderInfo { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 931 | DataSenderInfo() |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 932 | : ssrc(0) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 933 | } |
| 934 | |
| 935 | uint32 ssrc; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 936 | }; |
| 937 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 938 | struct DataReceiverInfo : public MediaReceiverInfo { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 939 | DataReceiverInfo() |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 940 | : ssrc(0) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | uint32 ssrc; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 944 | }; |
| 945 | |
| 946 | struct BandwidthEstimationInfo { |
| 947 | BandwidthEstimationInfo() |
| 948 | : available_send_bandwidth(0), |
| 949 | available_recv_bandwidth(0), |
| 950 | target_enc_bitrate(0), |
| 951 | actual_enc_bitrate(0), |
| 952 | retransmit_bitrate(0), |
| 953 | transmit_bitrate(0), |
pbos@webrtc.org | 058b1f1 | 2015-03-04 08:54:32 +0000 | [diff] [blame] | 954 | bucket_delay(0) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 955 | } |
| 956 | |
| 957 | int available_send_bandwidth; |
| 958 | int available_recv_bandwidth; |
| 959 | int target_enc_bitrate; |
| 960 | int actual_enc_bitrate; |
| 961 | int retransmit_bitrate; |
| 962 | int transmit_bitrate; |
pkasting@chromium.org | 16825b1 | 2015-01-12 21:51:21 +0000 | [diff] [blame] | 963 | int64_t bucket_delay; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 964 | }; |
| 965 | |
| 966 | struct VoiceMediaInfo { |
| 967 | void Clear() { |
| 968 | senders.clear(); |
| 969 | receivers.clear(); |
| 970 | } |
| 971 | std::vector<VoiceSenderInfo> senders; |
| 972 | std::vector<VoiceReceiverInfo> receivers; |
| 973 | }; |
| 974 | |
| 975 | struct VideoMediaInfo { |
| 976 | void Clear() { |
| 977 | senders.clear(); |
| 978 | receivers.clear(); |
| 979 | bw_estimations.clear(); |
| 980 | } |
| 981 | std::vector<VideoSenderInfo> senders; |
| 982 | std::vector<VideoReceiverInfo> receivers; |
| 983 | std::vector<BandwidthEstimationInfo> bw_estimations; |
| 984 | }; |
| 985 | |
| 986 | struct DataMediaInfo { |
| 987 | void Clear() { |
| 988 | senders.clear(); |
| 989 | receivers.clear(); |
| 990 | } |
| 991 | std::vector<DataSenderInfo> senders; |
| 992 | std::vector<DataReceiverInfo> receivers; |
| 993 | }; |
| 994 | |
| 995 | class VoiceMediaChannel : public MediaChannel { |
| 996 | public: |
| 997 | enum Error { |
| 998 | ERROR_NONE = 0, // No error. |
| 999 | ERROR_OTHER, // Other errors. |
| 1000 | ERROR_REC_DEVICE_OPEN_FAILED = 100, // Could not open mic. |
| 1001 | ERROR_REC_DEVICE_MUTED, // Mic was muted by OS. |
| 1002 | ERROR_REC_DEVICE_SILENT, // No background noise picked up. |
| 1003 | ERROR_REC_DEVICE_SATURATION, // Mic input is clipping. |
| 1004 | ERROR_REC_DEVICE_REMOVED, // Mic was removed while active. |
| 1005 | ERROR_REC_RUNTIME_ERROR, // Processing is encountering errors. |
| 1006 | ERROR_REC_SRTP_ERROR, // Generic SRTP failure. |
| 1007 | ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
| 1008 | ERROR_REC_TYPING_NOISE_DETECTED, // Typing noise is detected. |
| 1009 | ERROR_PLAY_DEVICE_OPEN_FAILED = 200, // Could not open playout. |
| 1010 | ERROR_PLAY_DEVICE_MUTED, // Playout muted by OS. |
| 1011 | ERROR_PLAY_DEVICE_REMOVED, // Playout removed while active. |
| 1012 | ERROR_PLAY_RUNTIME_ERROR, // Errors in voice processing. |
| 1013 | ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure. |
| 1014 | ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
| 1015 | ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. |
| 1016 | }; |
| 1017 | |
| 1018 | VoiceMediaChannel() {} |
| 1019 | virtual ~VoiceMediaChannel() {} |
| 1020 | // Sets the codecs/payload types to be used for incoming media. |
| 1021 | virtual bool SetRecvCodecs(const std::vector<AudioCodec>& codecs) = 0; |
| 1022 | // Sets the codecs/payload types to be used for outgoing media. |
| 1023 | virtual bool SetSendCodecs(const std::vector<AudioCodec>& codecs) = 0; |
| 1024 | // Starts or stops playout of received audio. |
| 1025 | virtual bool SetPlayout(bool playout) = 0; |
| 1026 | // Starts or stops sending (and potentially capture) of local audio. |
| 1027 | virtual bool SetSend(SendFlags flag) = 0; |
henrike@webrtc.org | 1e09a71 | 2013-07-26 19:17:59 +0000 | [diff] [blame] | 1028 | // Sets the renderer object to be used for the specified remote audio stream. |
| 1029 | virtual bool SetRemoteRenderer(uint32 ssrc, AudioRenderer* renderer) = 0; |
| 1030 | // Sets the renderer object to be used for the specified local audio stream. |
| 1031 | virtual bool SetLocalRenderer(uint32 ssrc, AudioRenderer* renderer) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1032 | // Gets current energy levels for all incoming streams. |
| 1033 | virtual bool GetActiveStreams(AudioInfo::StreamList* actives) = 0; |
| 1034 | // Get the current energy level of the stream sent to the speaker. |
| 1035 | virtual int GetOutputLevel() = 0; |
| 1036 | // Get the time in milliseconds since last recorded keystroke, or negative. |
| 1037 | virtual int GetTimeSinceLastTyping() = 0; |
| 1038 | // Temporarily exposed field for tuning typing detect options. |
| 1039 | virtual void SetTypingDetectionParameters(int time_window, |
| 1040 | int cost_per_typing, int reporting_threshold, int penalty_decay, |
| 1041 | int type_event_delay) = 0; |
| 1042 | // Set left and right scale for speaker output volume of the specified ssrc. |
| 1043 | virtual bool SetOutputScaling(uint32 ssrc, double left, double right) = 0; |
| 1044 | // Get left and right scale for speaker output volume of the specified ssrc. |
| 1045 | virtual bool GetOutputScaling(uint32 ssrc, double* left, double* right) = 0; |
| 1046 | // Specifies a ringback tone to be played during call setup. |
| 1047 | virtual bool SetRingbackTone(const char *buf, int len) = 0; |
| 1048 | // Plays or stops the aforementioned ringback tone |
| 1049 | virtual bool PlayRingbackTone(uint32 ssrc, bool play, bool loop) = 0; |
| 1050 | // Returns if the telephone-event has been negotiated. |
| 1051 | virtual bool CanInsertDtmf() { return false; } |
| 1052 | // Send and/or play a DTMF |event| according to the |flags|. |
| 1053 | // The DTMF out-of-band signal will be used on sending. |
| 1054 | // The |ssrc| should be either 0 or a valid send stream ssrc. |
henrike@webrtc.org | 9de257d | 2013-07-17 14:42:53 +0000 | [diff] [blame] | 1055 | // The valid value for the |event| are 0 to 15 which corresponding to |
| 1056 | // DTMF event 0-9, *, #, A-D. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1057 | virtual bool InsertDtmf(uint32 ssrc, int event, int duration, int flags) = 0; |
| 1058 | // Gets quality stats for the channel. |
| 1059 | virtual bool GetStats(VoiceMediaInfo* info) = 0; |
| 1060 | // Gets last reported error for this media channel. |
| 1061 | virtual void GetLastMediaError(uint32* ssrc, |
| 1062 | VoiceMediaChannel::Error* error) { |
| 1063 | ASSERT(error != NULL); |
| 1064 | *error = ERROR_NONE; |
| 1065 | } |
| 1066 | // Sets the media options to use. |
| 1067 | virtual bool SetOptions(const AudioOptions& options) = 0; |
| 1068 | virtual bool GetOptions(AudioOptions* options) const = 0; |
| 1069 | |
| 1070 | // Signal errors from MediaChannel. Arguments are: |
| 1071 | // ssrc(uint32), and error(VoiceMediaChannel::Error). |
| 1072 | sigslot::signal2<uint32, VoiceMediaChannel::Error> SignalMediaError; |
| 1073 | }; |
| 1074 | |
| 1075 | class VideoMediaChannel : public MediaChannel { |
| 1076 | public: |
| 1077 | enum Error { |
| 1078 | ERROR_NONE = 0, // No error. |
| 1079 | ERROR_OTHER, // Other errors. |
| 1080 | ERROR_REC_DEVICE_OPEN_FAILED = 100, // Could not open camera. |
| 1081 | ERROR_REC_DEVICE_NO_DEVICE, // No camera. |
| 1082 | ERROR_REC_DEVICE_IN_USE, // Device is in already use. |
| 1083 | ERROR_REC_DEVICE_REMOVED, // Device is removed. |
| 1084 | ERROR_REC_SRTP_ERROR, // Generic sender SRTP failure. |
| 1085 | ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
| 1086 | ERROR_REC_CPU_MAX_CANT_DOWNGRADE, // Can't downgrade capture anymore. |
| 1087 | ERROR_PLAY_SRTP_ERROR = 200, // Generic receiver SRTP failure. |
| 1088 | ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
| 1089 | ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. |
| 1090 | }; |
| 1091 | |
| 1092 | VideoMediaChannel() : renderer_(NULL) {} |
| 1093 | virtual ~VideoMediaChannel() {} |
Fredrik Solenberg | 4b60c73 | 2015-05-07 14:07:48 +0200 | [diff] [blame] | 1094 | // Allow video channel to unhook itself from an associated voice channel. |
| 1095 | virtual void DetachVoiceChannel() = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1096 | // Sets the codecs/payload types to be used for incoming media. |
| 1097 | virtual bool SetRecvCodecs(const std::vector<VideoCodec>& codecs) = 0; |
| 1098 | // Sets the codecs/payload types to be used for outgoing media. |
| 1099 | virtual bool SetSendCodecs(const std::vector<VideoCodec>& codecs) = 0; |
| 1100 | // Gets the currently set codecs/payload types to be used for outgoing media. |
| 1101 | virtual bool GetSendCodec(VideoCodec* send_codec) = 0; |
| 1102 | // Sets the format of a specified outgoing stream. |
| 1103 | virtual bool SetSendStreamFormat(uint32 ssrc, const VideoFormat& format) = 0; |
| 1104 | // Starts or stops playout of received video. |
| 1105 | virtual bool SetRender(bool render) = 0; |
| 1106 | // Starts or stops transmission (and potentially capture) of local video. |
| 1107 | virtual bool SetSend(bool send) = 0; |
| 1108 | // Sets the renderer object to be used for the specified stream. |
| 1109 | // If SSRC is 0, the renderer is used for the 'default' stream. |
| 1110 | virtual bool SetRenderer(uint32 ssrc, VideoRenderer* renderer) = 0; |
| 1111 | // If |ssrc| is 0, replace the default capturer (engine capturer) with |
| 1112 | // |capturer|. If |ssrc| is non zero create a new stream with |ssrc| as SSRC. |
| 1113 | virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) = 0; |
| 1114 | // Gets quality stats for the channel. |
pbos@webrtc.org | 058b1f1 | 2015-03-04 08:54:32 +0000 | [diff] [blame] | 1115 | virtual bool GetStats(VideoMediaInfo* info) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1116 | // Send an intra frame to the receivers. |
| 1117 | virtual bool SendIntraFrame() = 0; |
| 1118 | // Reuqest each of the remote senders to send an intra frame. |
| 1119 | virtual bool RequestIntraFrame() = 0; |
| 1120 | // Sets the media options to use. |
| 1121 | virtual bool SetOptions(const VideoOptions& options) = 0; |
| 1122 | virtual bool GetOptions(VideoOptions* options) const = 0; |
| 1123 | virtual void UpdateAspectRatio(int ratio_w, int ratio_h) = 0; |
| 1124 | |
| 1125 | // Signal errors from MediaChannel. Arguments are: |
| 1126 | // ssrc(uint32), and error(VideoMediaChannel::Error). |
| 1127 | sigslot::signal2<uint32, Error> SignalMediaError; |
| 1128 | |
| 1129 | protected: |
| 1130 | VideoRenderer *renderer_; |
| 1131 | }; |
| 1132 | |
| 1133 | enum DataMessageType { |
mallinath@webrtc.org | 1112c30 | 2013-09-23 20:34:45 +0000 | [diff] [blame] | 1134 | // Chrome-Internal use only. See SctpDataMediaChannel for the actual PPID |
| 1135 | // values. |
| 1136 | DMT_NONE = 0, |
| 1137 | DMT_CONTROL = 1, |
| 1138 | DMT_BINARY = 2, |
| 1139 | DMT_TEXT = 3, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1140 | }; |
| 1141 | |
| 1142 | // Info about data received in DataMediaChannel. For use in |
| 1143 | // DataMediaChannel::SignalDataReceived and in all of the signals that |
| 1144 | // signal fires, on up the chain. |
| 1145 | struct ReceiveDataParams { |
| 1146 | // The in-packet stream indentifier. |
| 1147 | // For SCTP, this is really SID, not SSRC. |
| 1148 | uint32 ssrc; |
| 1149 | // The type of message (binary, text, or control). |
| 1150 | DataMessageType type; |
| 1151 | // A per-stream value incremented per packet in the stream. |
| 1152 | int seq_num; |
| 1153 | // A per-stream value monotonically increasing with time. |
| 1154 | int timestamp; |
| 1155 | |
| 1156 | ReceiveDataParams() : |
| 1157 | ssrc(0), |
| 1158 | type(DMT_TEXT), |
| 1159 | seq_num(0), |
| 1160 | timestamp(0) { |
| 1161 | } |
| 1162 | }; |
| 1163 | |
| 1164 | struct SendDataParams { |
| 1165 | // The in-packet stream indentifier. |
| 1166 | // For SCTP, this is really SID, not SSRC. |
| 1167 | uint32 ssrc; |
| 1168 | // The type of message (binary, text, or control). |
| 1169 | DataMessageType type; |
| 1170 | |
| 1171 | // For SCTP, whether to send messages flagged as ordered or not. |
| 1172 | // If false, messages can be received out of order. |
| 1173 | bool ordered; |
| 1174 | // For SCTP, whether the messages are sent reliably or not. |
| 1175 | // If false, messages may be lost. |
| 1176 | bool reliable; |
| 1177 | // For SCTP, if reliable == false, provide partial reliability by |
| 1178 | // resending up to this many times. Either count or millis |
| 1179 | // is supported, not both at the same time. |
| 1180 | int max_rtx_count; |
| 1181 | // For SCTP, if reliable == false, provide partial reliability by |
| 1182 | // resending for up to this many milliseconds. Either count or millis |
| 1183 | // is supported, not both at the same time. |
| 1184 | int max_rtx_ms; |
| 1185 | |
| 1186 | SendDataParams() : |
| 1187 | ssrc(0), |
| 1188 | type(DMT_TEXT), |
| 1189 | // TODO(pthatcher): Make these true by default? |
| 1190 | ordered(false), |
| 1191 | reliable(false), |
| 1192 | max_rtx_count(0), |
| 1193 | max_rtx_ms(0) { |
| 1194 | } |
| 1195 | }; |
| 1196 | |
| 1197 | enum SendDataResult { SDR_SUCCESS, SDR_ERROR, SDR_BLOCK }; |
| 1198 | |
| 1199 | class DataMediaChannel : public MediaChannel { |
| 1200 | public: |
| 1201 | enum Error { |
| 1202 | ERROR_NONE = 0, // No error. |
| 1203 | ERROR_OTHER, // Other errors. |
| 1204 | ERROR_SEND_SRTP_ERROR = 200, // Generic SRTP failure. |
| 1205 | ERROR_SEND_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
| 1206 | ERROR_RECV_SRTP_ERROR, // Generic SRTP failure. |
| 1207 | ERROR_RECV_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
| 1208 | ERROR_RECV_SRTP_REPLAY, // Packet replay detected. |
| 1209 | }; |
| 1210 | |
| 1211 | virtual ~DataMediaChannel() {} |
| 1212 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1213 | virtual bool SetSendCodecs(const std::vector<DataCodec>& codecs) = 0; |
| 1214 | virtual bool SetRecvCodecs(const std::vector<DataCodec>& codecs) = 0; |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 +0000 | [diff] [blame] | 1215 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1216 | virtual bool MuteStream(uint32 ssrc, bool on) { return false; } |
| 1217 | // TODO(pthatcher): Implement this. |
| 1218 | virtual bool GetStats(DataMediaInfo* info) { return true; } |
| 1219 | |
| 1220 | virtual bool SetSend(bool send) = 0; |
| 1221 | virtual bool SetReceive(bool receive) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1222 | |
| 1223 | virtual bool SendData( |
| 1224 | const SendDataParams& params, |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 1225 | const rtc::Buffer& payload, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1226 | SendDataResult* result = NULL) = 0; |
| 1227 | // Signals when data is received (params, data, len) |
| 1228 | sigslot::signal3<const ReceiveDataParams&, |
| 1229 | const char*, |
| 1230 | size_t> SignalDataReceived; |
| 1231 | // Signal errors from MediaChannel. Arguments are: |
| 1232 | // ssrc(uint32), and error(DataMediaChannel::Error). |
| 1233 | sigslot::signal2<uint32, DataMediaChannel::Error> SignalMediaError; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 1234 | // Signal when the media channel is ready to send the stream. Arguments are: |
| 1235 | // writable(bool) |
| 1236 | sigslot::signal1<bool> SignalReadyToSend; |
buildbot@webrtc.org | 1d66be2 | 2014-05-29 22:54:24 +0000 | [diff] [blame] | 1237 | // Signal for notifying that the remote side has closed the DataChannel. |
| 1238 | sigslot::signal1<uint32> SignalStreamClosedRemotely; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1239 | }; |
| 1240 | |
| 1241 | } // namespace cricket |
| 1242 | |
| 1243 | #endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_ |