blob: 900c51ae9db84d35cd60bf476fd413c8a0001714 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
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.orga09a9992014-08-13 17:26:08 +000034#include "talk/media/base/codec.h"
35#include "talk/media/base/constants.h"
36#include "talk/media/base/streamparams.h"
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000037#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.org28e20752013-07-10 00:45:36 +000044// TODO(juberti): re-evaluate this include
45#include "talk/session/media/audiomonitor.h"
46
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000047namespace rtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000048class Buffer;
49class RateLimiter;
50class Timing;
51}
52
53namespace cricket {
54
55class AudioRenderer;
56struct RtpHeader;
57class ScreencastId;
58struct VideoFormat;
59class VideoCapturer;
60class VideoRenderer;
61
62const int kMinRtpHeaderExtensionId = 1;
63const int kMaxRtpHeaderExtensionId = 255;
64const int kScreencastDefaultFps = 5;
wu@webrtc.orgcfe5e9c2014-03-27 17:03:58 +000065const int kHighStartBitrate = 1500;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000066
67// Used in AudioOptions and VideoOptions to signify "unset" values.
68template <class T>
69class 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.org40b276e2014-12-12 02:44:30 +000087 void Set(T val) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000088 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.orgd4e598d2014-07-29 17:36:52 +0000107 return set_ ? rtc::ToString(val_) : "";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000108 }
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.org28e20752013-07-10 00:45:36 +0000129template <class T>
130static 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
Peter Thatcherc2ee2c82015-08-07 16:05:34 -0700141template <class T>
142static std::string VectorToString(const std::vector<T>& vals) {
143 std::ostringstream ost;
144 ost << "[";
145 for (size_t i = 0; i < vals.size(); ++i) {
146 if (i > 0) {
147 ost << ", ";
148 }
149 ost << vals[i].ToString();
150 }
151 ost << "]";
152 return ost.str();
153}
154
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000155// Options that can be applied to a VoiceMediaChannel or a VoiceMediaEngine.
156// Used to be flags, but that makes it hard to selectively apply options.
157// We are moving all of the setting of options to structs like this,
158// but some things currently still use flags.
159struct AudioOptions {
160 void SetAll(const AudioOptions& change) {
161 echo_cancellation.SetFrom(change.echo_cancellation);
162 auto_gain_control.SetFrom(change.auto_gain_control);
163 noise_suppression.SetFrom(change.noise_suppression);
164 highpass_filter.SetFrom(change.highpass_filter);
165 stereo_swapping.SetFrom(change.stereo_swapping);
Henrik Lundin64dad832015-05-11 12:44:23 +0200166 audio_jitter_buffer_max_packets.SetFrom(
167 change.audio_jitter_buffer_max_packets);
Henrik Lundin5263b3c2015-06-01 10:29:41 +0200168 audio_jitter_buffer_fast_accelerate.SetFrom(
169 change.audio_jitter_buffer_fast_accelerate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000170 typing_detection.SetFrom(change.typing_detection);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000171 aecm_generate_comfort_noise.SetFrom(change.aecm_generate_comfort_noise);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000172 conference_mode.SetFrom(change.conference_mode);
173 adjust_agc_delta.SetFrom(change.adjust_agc_delta);
174 experimental_agc.SetFrom(change.experimental_agc);
Henrik Lundin441f6342015-06-09 16:03:13 +0200175 extended_filter_aec.SetFrom(change.extended_filter_aec);
Bjorn Volckerbf395c12015-03-25 22:45:56 +0100176 delay_agnostic_aec.SetFrom(change.delay_agnostic_aec);
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000177 experimental_ns.SetFrom(change.experimental_ns);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000178 aec_dump.SetFrom(change.aec_dump);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000179 tx_agc_target_dbov.SetFrom(change.tx_agc_target_dbov);
180 tx_agc_digital_compression_gain.SetFrom(
181 change.tx_agc_digital_compression_gain);
182 tx_agc_limiter.SetFrom(change.tx_agc_limiter);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000183 recording_sample_rate.SetFrom(change.recording_sample_rate);
184 playout_sample_rate.SetFrom(change.playout_sample_rate);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000185 dscp.SetFrom(change.dscp);
buildbot@webrtc.orgb4c7b092014-08-25 12:11:58 +0000186 combined_audio_video_bwe.SetFrom(change.combined_audio_video_bwe);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000187 }
188
189 bool operator==(const AudioOptions& o) const {
190 return echo_cancellation == o.echo_cancellation &&
191 auto_gain_control == o.auto_gain_control &&
192 noise_suppression == o.noise_suppression &&
193 highpass_filter == o.highpass_filter &&
194 stereo_swapping == o.stereo_swapping &&
Henrik Lundin64dad832015-05-11 12:44:23 +0200195 audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets &&
Henrik Lundin5263b3c2015-06-01 10:29:41 +0200196 audio_jitter_buffer_fast_accelerate ==
197 o.audio_jitter_buffer_fast_accelerate &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000198 typing_detection == o.typing_detection &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000199 aecm_generate_comfort_noise == o.aecm_generate_comfort_noise &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000200 conference_mode == o.conference_mode &&
201 experimental_agc == o.experimental_agc &&
Henrik Lundin441f6342015-06-09 16:03:13 +0200202 extended_filter_aec == o.extended_filter_aec &&
Bjorn Volckerbf395c12015-03-25 22:45:56 +0100203 delay_agnostic_aec == o.delay_agnostic_aec &&
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000204 experimental_ns == o.experimental_ns &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000205 adjust_agc_delta == o.adjust_agc_delta &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000206 aec_dump == o.aec_dump &&
207 tx_agc_target_dbov == o.tx_agc_target_dbov &&
208 tx_agc_digital_compression_gain == o.tx_agc_digital_compression_gain &&
209 tx_agc_limiter == o.tx_agc_limiter &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000210 recording_sample_rate == o.recording_sample_rate &&
wu@webrtc.orgde305012013-10-31 15:40:38 +0000211 playout_sample_rate == o.playout_sample_rate &&
buildbot@webrtc.orgb4c7b092014-08-25 12:11:58 +0000212 dscp == o.dscp &&
213 combined_audio_video_bwe == o.combined_audio_video_bwe;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000214 }
215
216 std::string ToString() const {
217 std::ostringstream ost;
218 ost << "AudioOptions {";
219 ost << ToStringIfSet("aec", echo_cancellation);
220 ost << ToStringIfSet("agc", auto_gain_control);
221 ost << ToStringIfSet("ns", noise_suppression);
222 ost << ToStringIfSet("hf", highpass_filter);
223 ost << ToStringIfSet("swap", stereo_swapping);
Henrik Lundin64dad832015-05-11 12:44:23 +0200224 ost << ToStringIfSet("audio_jitter_buffer_max_packets",
225 audio_jitter_buffer_max_packets);
Henrik Lundin5263b3c2015-06-01 10:29:41 +0200226 ost << ToStringIfSet("audio_jitter_buffer_fast_accelerate",
227 audio_jitter_buffer_fast_accelerate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000228 ost << ToStringIfSet("typing", typing_detection);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000229 ost << ToStringIfSet("comfort_noise", aecm_generate_comfort_noise);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000230 ost << ToStringIfSet("conference", conference_mode);
231 ost << ToStringIfSet("agc_delta", adjust_agc_delta);
232 ost << ToStringIfSet("experimental_agc", experimental_agc);
Henrik Lundin441f6342015-06-09 16:03:13 +0200233 ost << ToStringIfSet("extended_filter_aec", extended_filter_aec);
Bjorn Volckerbf395c12015-03-25 22:45:56 +0100234 ost << ToStringIfSet("delay_agnostic_aec", delay_agnostic_aec);
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000235 ost << ToStringIfSet("experimental_ns", experimental_ns);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000236 ost << ToStringIfSet("aec_dump", aec_dump);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000237 ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov);
238 ost << ToStringIfSet("tx_agc_digital_compression_gain",
239 tx_agc_digital_compression_gain);
240 ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000241 ost << ToStringIfSet("recording_sample_rate", recording_sample_rate);
242 ost << ToStringIfSet("playout_sample_rate", playout_sample_rate);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000243 ost << ToStringIfSet("dscp", dscp);
buildbot@webrtc.orgb4c7b092014-08-25 12:11:58 +0000244 ost << ToStringIfSet("combined_audio_video_bwe", combined_audio_video_bwe);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000245 ost << "}";
246 return ost.str();
247 }
248
249 // Audio processing that attempts to filter away the output signal from
250 // later inbound pickup.
251 Settable<bool> echo_cancellation;
252 // Audio processing to adjust the sensitivity of the local mic dynamically.
253 Settable<bool> auto_gain_control;
254 // Audio processing to filter out background noise.
255 Settable<bool> noise_suppression;
256 // Audio processing to remove background noise of lower frequencies.
257 Settable<bool> highpass_filter;
258 // Audio processing to swap the left and right channels.
259 Settable<bool> stereo_swapping;
Henrik Lundin64dad832015-05-11 12:44:23 +0200260 // Audio receiver jitter buffer (NetEq) max capacity in number of packets.
261 Settable<int> audio_jitter_buffer_max_packets;
Henrik Lundin5263b3c2015-06-01 10:29:41 +0200262 // Audio receiver jitter buffer (NetEq) fast accelerate mode.
263 Settable<bool> audio_jitter_buffer_fast_accelerate;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000264 // Audio processing to detect typing.
265 Settable<bool> typing_detection;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000266 Settable<bool> aecm_generate_comfort_noise;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000267 Settable<bool> conference_mode;
268 Settable<int> adjust_agc_delta;
269 Settable<bool> experimental_agc;
Henrik Lundin441f6342015-06-09 16:03:13 +0200270 Settable<bool> extended_filter_aec;
Bjorn Volckerbf395c12015-03-25 22:45:56 +0100271 Settable<bool> delay_agnostic_aec;
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000272 Settable<bool> experimental_ns;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000273 Settable<bool> aec_dump;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000274 // Note that tx_agc_* only applies to non-experimental AGC.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200275 Settable<uint16_t> tx_agc_target_dbov;
276 Settable<uint16_t> tx_agc_digital_compression_gain;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000277 Settable<bool> tx_agc_limiter;
Peter Boström0c4e06b2015-10-07 12:23:21 +0200278 Settable<uint32_t> recording_sample_rate;
279 Settable<uint32_t> playout_sample_rate;
wu@webrtc.orgde305012013-10-31 15:40:38 +0000280 // Set DSCP value for packet sent from audio channel.
281 Settable<bool> dscp;
buildbot@webrtc.orgb4c7b092014-08-25 12:11:58 +0000282 // Enable combined audio+bandwidth BWE.
283 Settable<bool> combined_audio_video_bwe;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000284};
285
286// Options that can be applied to a VideoMediaChannel or a VideoMediaEngine.
287// Used to be flags, but that makes it hard to selectively apply options.
288// We are moving all of the setting of options to structs like this,
289// but some things currently still use flags.
290struct VideoOptions {
henrike@webrtc.orgf45a5502014-03-13 18:51:34 +0000291 enum HighestBitrate {
292 NORMAL,
293 HIGH,
294 VERY_HIGH
295 };
296
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000297 VideoOptions() {
298 process_adaptation_threshhold.Set(kProcessCpuThreshold);
299 system_low_adaptation_threshhold.Set(kLowSystemCpuThreshold);
300 system_high_adaptation_threshhold.Set(kHighSystemCpuThreshold);
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000301 unsignalled_recv_stream_limit.Set(kNumDefaultUnsignalledVideoRecvStreams);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000302 }
303
304 void SetAll(const VideoOptions& change) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000305 adapt_input_to_cpu_usage.SetFrom(change.adapt_input_to_cpu_usage);
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000306 adapt_cpu_with_smoothing.SetFrom(change.adapt_cpu_with_smoothing);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000307 video_adapt_third.SetFrom(change.video_adapt_third);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000308 video_noise_reduction.SetFrom(change.video_noise_reduction);
wu@webrtc.org1e6cb2c2014-03-24 17:01:50 +0000309 video_start_bitrate.SetFrom(change.video_start_bitrate);
henrike@webrtc.orgf45a5502014-03-13 18:51:34 +0000310 video_highest_bitrate.SetFrom(change.video_highest_bitrate);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000311 cpu_overuse_detection.SetFrom(change.cpu_overuse_detection);
henrike@webrtc.orge9793ab2014-03-18 14:36:23 +0000312 cpu_underuse_threshold.SetFrom(change.cpu_underuse_threshold);
313 cpu_overuse_threshold.SetFrom(change.cpu_overuse_threshold);
buildbot@webrtc.org27626a62014-06-16 13:39:40 +0000314 cpu_underuse_encode_rsd_threshold.SetFrom(
315 change.cpu_underuse_encode_rsd_threshold);
316 cpu_overuse_encode_rsd_threshold.SetFrom(
317 change.cpu_overuse_encode_rsd_threshold);
henrike@webrtc.orgb0ecc1c2014-03-26 22:44:28 +0000318 cpu_overuse_encode_usage.SetFrom(change.cpu_overuse_encode_usage);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000319 conference_mode.SetFrom(change.conference_mode);
320 process_adaptation_threshhold.SetFrom(change.process_adaptation_threshhold);
321 system_low_adaptation_threshhold.SetFrom(
322 change.system_low_adaptation_threshhold);
323 system_high_adaptation_threshhold.SetFrom(
324 change.system_high_adaptation_threshhold);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000325 dscp.SetFrom(change.dscp);
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000326 suspend_below_min_bitrate.SetFrom(change.suspend_below_min_bitrate);
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000327 unsignalled_recv_stream_limit.SetFrom(change.unsignalled_recv_stream_limit);
henrike@webrtc.org10bd88e2014-03-11 21:07:25 +0000328 use_simulcast_adapter.SetFrom(change.use_simulcast_adapter);
henrike@webrtc.orgdce3feb2014-03-26 01:17:30 +0000329 screencast_min_bitrate.SetFrom(change.screencast_min_bitrate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000330 }
331
332 bool operator==(const VideoOptions& o) const {
pbos@webrtc.org43336b62014-10-14 19:12:06 +0000333 return adapt_input_to_cpu_usage == o.adapt_input_to_cpu_usage &&
334 adapt_cpu_with_smoothing == o.adapt_cpu_with_smoothing &&
335 video_adapt_third == o.video_adapt_third &&
336 video_noise_reduction == o.video_noise_reduction &&
337 video_start_bitrate == o.video_start_bitrate &&
pbos@webrtc.org43336b62014-10-14 19:12:06 +0000338 video_highest_bitrate == o.video_highest_bitrate &&
339 cpu_overuse_detection == o.cpu_overuse_detection &&
340 cpu_underuse_threshold == o.cpu_underuse_threshold &&
341 cpu_overuse_threshold == o.cpu_overuse_threshold &&
342 cpu_underuse_encode_rsd_threshold ==
343 o.cpu_underuse_encode_rsd_threshold &&
344 cpu_overuse_encode_rsd_threshold ==
345 o.cpu_overuse_encode_rsd_threshold &&
346 cpu_overuse_encode_usage == o.cpu_overuse_encode_usage &&
347 conference_mode == o.conference_mode &&
348 process_adaptation_threshhold == o.process_adaptation_threshhold &&
349 system_low_adaptation_threshhold ==
350 o.system_low_adaptation_threshhold &&
351 system_high_adaptation_threshhold ==
352 o.system_high_adaptation_threshhold &&
Peter Thatchera9b4c322015-07-16 03:47:28 -0700353 dscp == o.dscp &&
pbos@webrtc.org43336b62014-10-14 19:12:06 +0000354 suspend_below_min_bitrate == o.suspend_below_min_bitrate &&
355 unsignalled_recv_stream_limit == o.unsignalled_recv_stream_limit &&
356 use_simulcast_adapter == o.use_simulcast_adapter &&
stefan@webrtc.org742386a2014-12-19 15:33:17 +0000357 screencast_min_bitrate == o.screencast_min_bitrate;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000358 }
359
360 std::string ToString() const {
361 std::ostringstream ost;
362 ost << "VideoOptions {";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000363 ost << ToStringIfSet("cpu adaption", adapt_input_to_cpu_usage);
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000364 ost << ToStringIfSet("cpu adaptation smoothing", adapt_cpu_with_smoothing);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000365 ost << ToStringIfSet("video adapt third", video_adapt_third);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000366 ost << ToStringIfSet("noise reduction", video_noise_reduction);
wu@webrtc.org1e6cb2c2014-03-24 17:01:50 +0000367 ost << ToStringIfSet("start bitrate", video_start_bitrate);
henrike@webrtc.orgf45a5502014-03-13 18:51:34 +0000368 ost << ToStringIfSet("highest video bitrate", video_highest_bitrate);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000369 ost << ToStringIfSet("cpu overuse detection", cpu_overuse_detection);
henrike@webrtc.orge9793ab2014-03-18 14:36:23 +0000370 ost << ToStringIfSet("cpu underuse threshold", cpu_underuse_threshold);
371 ost << ToStringIfSet("cpu overuse threshold", cpu_overuse_threshold);
buildbot@webrtc.org27626a62014-06-16 13:39:40 +0000372 ost << ToStringIfSet("cpu underuse encode rsd threshold",
373 cpu_underuse_encode_rsd_threshold);
374 ost << ToStringIfSet("cpu overuse encode rsd threshold",
375 cpu_overuse_encode_rsd_threshold);
henrike@webrtc.orgb0ecc1c2014-03-26 22:44:28 +0000376 ost << ToStringIfSet("cpu overuse encode usage",
377 cpu_overuse_encode_usage);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000378 ost << ToStringIfSet("conference mode", conference_mode);
379 ost << ToStringIfSet("process", process_adaptation_threshhold);
380 ost << ToStringIfSet("low", system_low_adaptation_threshhold);
381 ost << ToStringIfSet("high", system_high_adaptation_threshhold);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000382 ost << ToStringIfSet("dscp", dscp);
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000383 ost << ToStringIfSet("suspend below min bitrate",
384 suspend_below_min_bitrate);
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000385 ost << ToStringIfSet("num channels for early receive",
386 unsignalled_recv_stream_limit);
henrike@webrtc.org10bd88e2014-03-11 21:07:25 +0000387 ost << ToStringIfSet("use simulcast adapter", use_simulcast_adapter);
henrike@webrtc.orgdce3feb2014-03-26 01:17:30 +0000388 ost << ToStringIfSet("screencast min bitrate", screencast_min_bitrate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000389 ost << "}";
390 return ost.str();
391 }
392
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000393 // Enable CPU adaptation?
394 Settable<bool> adapt_input_to_cpu_usage;
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000395 // Enable CPU adaptation smoothing?
396 Settable<bool> adapt_cpu_with_smoothing;
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000397 // Enable video adapt third?
398 Settable<bool> video_adapt_third;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000399 // Enable denoising?
400 Settable<bool> video_noise_reduction;
wu@webrtc.org1e6cb2c2014-03-24 17:01:50 +0000401 // Experimental: Enable WebRtc higher start bitrate?
402 Settable<int> video_start_bitrate;
henrike@webrtc.orgf45a5502014-03-13 18:51:34 +0000403 // Set highest bitrate mode for video.
wu@webrtc.orgcfe5e9c2014-03-27 17:03:58 +0000404 Settable<HighestBitrate> video_highest_bitrate;
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000405 // Enable WebRTC Cpu Overuse Detection, which is a new version of the CPU
406 // adaptation algorithm. So this option will override the
407 // |adapt_input_to_cpu_usage|.
408 Settable<bool> cpu_overuse_detection;
buildbot@webrtc.org27626a62014-06-16 13:39:40 +0000409 // Low threshold (t1) for cpu overuse adaptation. (Adapt up)
410 // Metric: encode usage (m1). m1 < t1 => underuse.
henrike@webrtc.orge9793ab2014-03-18 14:36:23 +0000411 Settable<int> cpu_underuse_threshold;
buildbot@webrtc.org27626a62014-06-16 13:39:40 +0000412 // High threshold (t1) for cpu overuse adaptation. (Adapt down)
413 // Metric: encode usage (m1). m1 > t1 => overuse.
henrike@webrtc.orge9793ab2014-03-18 14:36:23 +0000414 Settable<int> cpu_overuse_threshold;
buildbot@webrtc.org27626a62014-06-16 13:39:40 +0000415 // Low threshold (t2) for cpu overuse adaptation. (Adapt up)
416 // Metric: relative standard deviation of encode time (m2).
417 // Optional threshold. If set, (m1 < t1 && m2 < t2) => underuse.
418 // Note: t2 will have no effect if t1 is not set.
419 Settable<int> cpu_underuse_encode_rsd_threshold;
420 // High threshold (t2) for cpu overuse adaptation. (Adapt down)
421 // Metric: relative standard deviation of encode time (m2).
422 // Optional threshold. If set, (m1 > t1 || m2 > t2) => overuse.
423 // Note: t2 will have no effect if t1 is not set.
424 Settable<int> cpu_overuse_encode_rsd_threshold;
henrike@webrtc.orgb0ecc1c2014-03-26 22:44:28 +0000425 // Use encode usage for cpu detection.
426 Settable<bool> cpu_overuse_encode_usage;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000427 // Use conference mode?
428 Settable<bool> conference_mode;
429 // Threshhold for process cpu adaptation. (Process limit)
pthatcher@webrtc.org40b276e2014-12-12 02:44:30 +0000430 Settable<float> process_adaptation_threshhold;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000431 // Low threshhold for cpu adaptation. (Adapt up)
pthatcher@webrtc.org40b276e2014-12-12 02:44:30 +0000432 Settable<float> system_low_adaptation_threshhold;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000433 // High threshhold for cpu adaptation. (Adapt down)
pthatcher@webrtc.org40b276e2014-12-12 02:44:30 +0000434 Settable<float> system_high_adaptation_threshhold;
wu@webrtc.orgde305012013-10-31 15:40:38 +0000435 // Set DSCP value for packet sent from video channel.
436 Settable<bool> dscp;
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000437 // Enable WebRTC suspension of video. No video frames will be sent when the
438 // bitrate is below the configured minimum bitrate.
439 Settable<bool> suspend_below_min_bitrate;
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000440 // Limit on the number of early receive channels that can be created.
441 Settable<int> unsignalled_recv_stream_limit;
henrike@webrtc.org10bd88e2014-03-11 21:07:25 +0000442 // Enable use of simulcast adapter.
443 Settable<bool> use_simulcast_adapter;
henrike@webrtc.orgdce3feb2014-03-26 01:17:30 +0000444 // Force screencast to use a minimum bitrate
445 Settable<int> screencast_min_bitrate;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000446};
447
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000448struct RtpHeaderExtension {
449 RtpHeaderExtension() : id(0) {}
450 RtpHeaderExtension(const std::string& u, int i) : uri(u), id(i) {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000451
452 bool operator==(const RtpHeaderExtension& ext) const {
453 // id is a reserved word in objective-c. Therefore the id attribute has to
454 // be a fully qualified name in order to compile on IOS.
455 return this->id == ext.id &&
456 uri == ext.uri;
457 }
Peter Thatcherc2ee2c82015-08-07 16:05:34 -0700458
459 std::string ToString() const {
460 std::ostringstream ost;
461 ost << "{";
462 ost << "id: , " << id;
463 ost << "uri: " << uri;
464 ost << "}";
465 return ost.str();
466 }
467
468 std::string uri;
469 int id;
470 // TODO(juberti): SendRecv direction;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000471};
472
473// Returns the named header extension if found among all extensions, NULL
474// otherwise.
475inline const RtpHeaderExtension* FindHeaderExtension(
476 const std::vector<RtpHeaderExtension>& extensions,
477 const std::string& name) {
478 for (std::vector<RtpHeaderExtension>::const_iterator it = extensions.begin();
479 it != extensions.end(); ++it) {
480 if (it->uri == name)
481 return &(*it);
482 }
483 return NULL;
484}
485
486enum MediaChannelOptions {
487 // Tune the stream for conference mode.
488 OPT_CONFERENCE = 0x0001
489};
490
491enum VoiceMediaChannelOptions {
492 // Tune the audio stream for vcs with different target levels.
493 OPT_AGC_MINUS_10DB = 0x80000000
494};
495
496// DTMF flags to control if a DTMF tone should be played and/or sent.
497enum DtmfFlags {
498 DF_PLAY = 0x01,
499 DF_SEND = 0x02,
500};
501
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000502class MediaChannel : public sigslot::has_slots<> {
503 public:
504 class NetworkInterface {
505 public:
506 enum SocketType { ST_RTP, ST_RTCP };
stefanc1aeaf02015-10-15 07:26:07 -0700507 virtual bool SendPacket(rtc::Buffer* packet,
508 const rtc::PacketOptions& options) = 0;
509 virtual bool SendRtcp(rtc::Buffer* packet,
510 const rtc::PacketOptions& options) = 0;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000511 virtual int SetOption(SocketType type, rtc::Socket::Option opt,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000512 int option) = 0;
513 virtual ~NetworkInterface() {}
514 };
515
516 MediaChannel() : network_interface_(NULL) {}
517 virtual ~MediaChannel() {}
518
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000519 // Sets the abstract interface class for sending RTP/RTCP data.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000520 virtual void SetInterface(NetworkInterface *iface) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000521 rtc::CritScope cs(&network_interface_crit_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000522 network_interface_ = iface;
523 }
524
525 // Called when a RTP packet is received.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000526 virtual void OnPacketReceived(rtc::Buffer* packet,
527 const rtc::PacketTime& packet_time) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000528 // Called when a RTCP packet is received.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000529 virtual void OnRtcpReceived(rtc::Buffer* packet,
530 const rtc::PacketTime& packet_time) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000531 // Called when the socket's ability to send has changed.
532 virtual void OnReadyToSend(bool ready) = 0;
533 // Creates a new outgoing media stream with SSRCs and CNAME as described
534 // by sp.
535 virtual bool AddSendStream(const StreamParams& sp) = 0;
536 // Removes an outgoing media stream.
537 // ssrc must be the first SSRC of the media stream if the stream uses
538 // multiple SSRCs.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200539 virtual bool RemoveSendStream(uint32_t ssrc) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000540 // Creates a new incoming media stream with SSRCs and CNAME as described
541 // by sp.
542 virtual bool AddRecvStream(const StreamParams& sp) = 0;
543 // Removes an incoming media stream.
544 // ssrc must be the first SSRC of the media stream if the stream uses
545 // multiple SSRCs.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200546 virtual bool RemoveRecvStream(uint32_t ssrc) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000547
mallinath@webrtc.org92fdfeb2014-02-17 18:49:41 +0000548 // Returns the absoulte sendtime extension id value from media channel.
549 virtual int GetRtpSendTimeExtnId() const {
550 return -1;
551 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000552
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000553 // Base method to send packet using NetworkInterface.
stefanc1aeaf02015-10-15 07:26:07 -0700554 bool SendPacket(rtc::Buffer* packet, const rtc::PacketOptions& options) {
555 return DoSendPacket(packet, false, options);
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000556 }
557
stefanc1aeaf02015-10-15 07:26:07 -0700558 bool SendRtcp(rtc::Buffer* packet, const rtc::PacketOptions& options) {
559 return DoSendPacket(packet, true, options);
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000560 }
561
562 int SetOption(NetworkInterface::SocketType type,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000563 rtc::Socket::Option opt,
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000564 int option) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000565 rtc::CritScope cs(&network_interface_crit_);
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000566 if (!network_interface_)
567 return -1;
568
569 return network_interface_->SetOption(type, opt, option);
570 }
571
wu@webrtc.orgde305012013-10-31 15:40:38 +0000572 protected:
573 // This method sets DSCP |value| on both RTP and RTCP channels.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000574 int SetDscp(rtc::DiffServCodePoint value) {
wu@webrtc.orgde305012013-10-31 15:40:38 +0000575 int ret;
576 ret = SetOption(NetworkInterface::ST_RTP,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000577 rtc::Socket::OPT_DSCP,
wu@webrtc.orgde305012013-10-31 15:40:38 +0000578 value);
579 if (ret == 0) {
580 ret = SetOption(NetworkInterface::ST_RTCP,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000581 rtc::Socket::OPT_DSCP,
wu@webrtc.orgde305012013-10-31 15:40:38 +0000582 value);
583 }
584 return ret;
585 }
586
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000587 private:
stefanc1aeaf02015-10-15 07:26:07 -0700588 bool DoSendPacket(rtc::Buffer* packet,
589 bool rtcp,
590 const rtc::PacketOptions& options) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000591 rtc::CritScope cs(&network_interface_crit_);
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000592 if (!network_interface_)
593 return false;
594
stefanc1aeaf02015-10-15 07:26:07 -0700595 return (!rtcp) ? network_interface_->SendPacket(packet, options)
596 : network_interface_->SendRtcp(packet, options);
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000597 }
598
599 // |network_interface_| can be accessed from the worker_thread and
600 // from any MediaEngine threads. This critical section is to protect accessing
601 // of network_interface_ object.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000602 rtc::CriticalSection network_interface_crit_;
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000603 NetworkInterface* network_interface_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000604};
605
606enum SendFlags {
607 SEND_NOTHING,
608 SEND_RINGBACKTONE,
609 SEND_MICROPHONE
610};
611
wu@webrtc.org97077a32013-10-25 21:18:33 +0000612// The stats information is structured as follows:
613// Media are represented by either MediaSenderInfo or MediaReceiverInfo.
614// Media contains a vector of SSRC infos that are exclusively used by this
615// media. (SSRCs shared between media streams can't be represented.)
616
617// Information about an SSRC.
618// This data may be locally recorded, or received in an RTCP SR or RR.
619struct SsrcSenderInfo {
620 SsrcSenderInfo()
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000621 : ssrc(0),
wu@webrtc.org97077a32013-10-25 21:18:33 +0000622 timestamp(0) {
623 }
Peter Boström0c4e06b2015-10-07 12:23:21 +0200624 uint32_t ssrc;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000625 double timestamp; // NTP timestamp, represented as seconds since epoch.
626};
627
628struct SsrcReceiverInfo {
629 SsrcReceiverInfo()
630 : ssrc(0),
631 timestamp(0) {
632 }
Peter Boström0c4e06b2015-10-07 12:23:21 +0200633 uint32_t ssrc;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000634 double timestamp;
635};
636
637struct MediaSenderInfo {
638 MediaSenderInfo()
639 : bytes_sent(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000640 packets_sent(0),
641 packets_lost(0),
642 fraction_lost(0.0),
wu@webrtc.org97077a32013-10-25 21:18:33 +0000643 rtt_ms(0) {
644 }
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000645 void add_ssrc(const SsrcSenderInfo& stat) {
646 local_stats.push_back(stat);
647 }
648 // Temporary utility function for call sites that only provide SSRC.
649 // As more info is added into SsrcSenderInfo, this function should go away.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200650 void add_ssrc(uint32_t ssrc) {
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000651 SsrcSenderInfo stat;
652 stat.ssrc = ssrc;
653 add_ssrc(stat);
654 }
655 // Utility accessor for clients that are only interested in ssrc numbers.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200656 std::vector<uint32_t> ssrcs() const {
657 std::vector<uint32_t> retval;
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000658 for (std::vector<SsrcSenderInfo>::const_iterator it = local_stats.begin();
659 it != local_stats.end(); ++it) {
660 retval.push_back(it->ssrc);
661 }
662 return retval;
663 }
664 // Utility accessor for clients that make the assumption only one ssrc
665 // exists per media.
666 // This will eventually go away.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200667 uint32_t ssrc() const {
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000668 if (local_stats.size() > 0) {
669 return local_stats[0].ssrc;
670 } else {
671 return 0;
672 }
673 }
Peter Boström0c4e06b2015-10-07 12:23:21 +0200674 int64_t bytes_sent;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000675 int packets_sent;
676 int packets_lost;
677 float fraction_lost;
pkasting@chromium.org16825b12015-01-12 21:51:21 +0000678 int64_t rtt_ms;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000679 std::string codec_name;
680 std::vector<SsrcSenderInfo> local_stats;
681 std::vector<SsrcReceiverInfo> remote_stats;
682};
683
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000684template<class T>
685struct VariableInfo {
686 VariableInfo()
687 : min_val(),
688 mean(0.0),
689 max_val(),
690 variance(0.0) {
691 }
692 T min_val;
693 double mean;
694 T max_val;
695 double variance;
696};
697
wu@webrtc.org97077a32013-10-25 21:18:33 +0000698struct MediaReceiverInfo {
699 MediaReceiverInfo()
700 : bytes_rcvd(0),
701 packets_rcvd(0),
702 packets_lost(0),
703 fraction_lost(0.0) {
704 }
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000705 void add_ssrc(const SsrcReceiverInfo& stat) {
706 local_stats.push_back(stat);
707 }
708 // Temporary utility function for call sites that only provide SSRC.
709 // As more info is added into SsrcSenderInfo, this function should go away.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200710 void add_ssrc(uint32_t ssrc) {
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000711 SsrcReceiverInfo stat;
712 stat.ssrc = ssrc;
713 add_ssrc(stat);
714 }
Peter Boström0c4e06b2015-10-07 12:23:21 +0200715 std::vector<uint32_t> ssrcs() const {
716 std::vector<uint32_t> retval;
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000717 for (std::vector<SsrcReceiverInfo>::const_iterator it = local_stats.begin();
718 it != local_stats.end(); ++it) {
719 retval.push_back(it->ssrc);
720 }
721 return retval;
722 }
723 // Utility accessor for clients that make the assumption only one ssrc
724 // exists per media.
725 // This will eventually go away.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200726 uint32_t ssrc() const {
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000727 if (local_stats.size() > 0) {
728 return local_stats[0].ssrc;
729 } else {
730 return 0;
731 }
732 }
733
Peter Boström0c4e06b2015-10-07 12:23:21 +0200734 int64_t bytes_rcvd;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000735 int packets_rcvd;
736 int packets_lost;
737 float fraction_lost;
buildbot@webrtc.org7e71b772014-06-13 01:14:01 +0000738 std::string codec_name;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000739 std::vector<SsrcReceiverInfo> local_stats;
740 std::vector<SsrcSenderInfo> remote_stats;
741};
742
743struct VoiceSenderInfo : public MediaSenderInfo {
744 VoiceSenderInfo()
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000745 : ext_seqnum(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000746 jitter_ms(0),
747 audio_level(0),
748 aec_quality_min(0.0),
749 echo_delay_median_ms(0),
750 echo_delay_std_ms(0),
751 echo_return_loss(0),
wu@webrtc.org967bfff2013-09-19 05:49:50 +0000752 echo_return_loss_enhancement(0),
753 typing_noise_detected(false) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000754 }
755
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000756 int ext_seqnum;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000757 int jitter_ms;
758 int audio_level;
759 float aec_quality_min;
760 int echo_delay_median_ms;
761 int echo_delay_std_ms;
762 int echo_return_loss;
763 int echo_return_loss_enhancement;
wu@webrtc.org967bfff2013-09-19 05:49:50 +0000764 bool typing_noise_detected;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000765};
766
wu@webrtc.org97077a32013-10-25 21:18:33 +0000767struct VoiceReceiverInfo : public MediaReceiverInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000768 VoiceReceiverInfo()
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000769 : ext_seqnum(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000770 jitter_ms(0),
771 jitter_buffer_ms(0),
772 jitter_buffer_preferred_ms(0),
773 delay_estimate_ms(0),
774 audio_level(0),
henrike@webrtc.orgb8c254a2014-02-14 23:38:45 +0000775 expand_rate(0),
minyue@webrtc.orgc0bd7be2015-02-18 15:24:13 +0000776 speech_expand_rate(0),
777 secondary_decoded_rate(0),
Henrik Lundin8e6fd462015-06-02 09:24:52 +0200778 accelerate_rate(0),
779 preemptive_expand_rate(0),
henrike@webrtc.orgb8c254a2014-02-14 23:38:45 +0000780 decoding_calls_to_silence_generator(0),
781 decoding_calls_to_neteq(0),
782 decoding_normal(0),
783 decoding_plc(0),
784 decoding_cng(0),
buildbot@webrtc.orgb525a9d2014-06-03 09:42:15 +0000785 decoding_plc_cng(0),
Henrik Lundin8e6fd462015-06-02 09:24:52 +0200786 capture_start_ntp_time_ms(-1) {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000787
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000788 int ext_seqnum;
789 int jitter_ms;
790 int jitter_buffer_ms;
791 int jitter_buffer_preferred_ms;
792 int delay_estimate_ms;
793 int audio_level;
minyue@webrtc.orgc0bd7be2015-02-18 15:24:13 +0000794 // fraction of synthesized audio inserted through expansion.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000795 float expand_rate;
minyue@webrtc.orgc0bd7be2015-02-18 15:24:13 +0000796 // fraction of synthesized speech inserted through expansion.
797 float speech_expand_rate;
798 // fraction of data out of secondary decoding, including FEC and RED.
799 float secondary_decoded_rate;
Henrik Lundin8e6fd462015-06-02 09:24:52 +0200800 // Fraction of data removed through time compression.
801 float accelerate_rate;
802 // Fraction of data inserted through time stretching.
803 float preemptive_expand_rate;
henrike@webrtc.orgb8c254a2014-02-14 23:38:45 +0000804 int decoding_calls_to_silence_generator;
805 int decoding_calls_to_neteq;
806 int decoding_normal;
807 int decoding_plc;
808 int decoding_cng;
809 int decoding_plc_cng;
buildbot@webrtc.orgb525a9d2014-06-03 09:42:15 +0000810 // Estimated capture start time in NTP time in ms.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200811 int64_t capture_start_ntp_time_ms;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000812};
813
wu@webrtc.org97077a32013-10-25 21:18:33 +0000814struct VideoSenderInfo : public MediaSenderInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000815 VideoSenderInfo()
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000816 : packets_cached(0),
817 firs_rcvd(0),
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000818 plis_rcvd(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000819 nacks_rcvd(0),
wu@webrtc.org987f2c92014-03-28 16:22:19 +0000820 input_frame_width(0),
821 input_frame_height(0),
822 send_frame_width(0),
823 send_frame_height(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000824 framerate_input(0),
825 framerate_sent(0),
826 nominal_bitrate(0),
827 preferred_bitrate(0),
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000828 adapt_reason(0),
buildbot@webrtc.org71dffb72014-06-24 07:24:49 +0000829 adapt_changes(0),
wu@webrtc.org9caf2762013-12-11 18:25:07 +0000830 avg_encode_ms(0),
Peter Boström8ed6a4b2015-03-27 10:01:02 +0100831 encode_usage_percent(0) {
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000832 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000833
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000834 std::vector<SsrcGroup> ssrc_groups;
835 int packets_cached;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000836 int firs_rcvd;
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000837 int plis_rcvd;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000838 int nacks_rcvd;
wu@webrtc.org987f2c92014-03-28 16:22:19 +0000839 int input_frame_width;
840 int input_frame_height;
841 int send_frame_width;
842 int send_frame_height;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000843 int framerate_input;
844 int framerate_sent;
845 int nominal_bitrate;
846 int preferred_bitrate;
847 int adapt_reason;
buildbot@webrtc.org71dffb72014-06-24 07:24:49 +0000848 int adapt_changes;
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000849 int avg_encode_ms;
wu@webrtc.org9caf2762013-12-11 18:25:07 +0000850 int encode_usage_percent;
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000851 VariableInfo<int> adapt_frame_drops;
852 VariableInfo<int> effects_frame_drops;
853 VariableInfo<double> capturer_frame_time;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000854};
855
wu@webrtc.org97077a32013-10-25 21:18:33 +0000856struct VideoReceiverInfo : public MediaReceiverInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000857 VideoReceiverInfo()
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000858 : packets_concealed(0),
859 firs_sent(0),
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000860 plis_sent(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000861 nacks_sent(0),
862 frame_width(0),
863 frame_height(0),
864 framerate_rcvd(0),
865 framerate_decoded(0),
866 framerate_output(0),
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000867 framerate_render_input(0),
868 framerate_render_output(0),
wu@webrtc.org97077a32013-10-25 21:18:33 +0000869 decode_ms(0),
870 max_decode_ms(0),
871 jitter_buffer_ms(0),
872 min_playout_delay_ms(0),
873 render_delay_ms(0),
874 target_delay_ms(0),
buildbot@webrtc.org0581f0b2014-05-06 21:36:31 +0000875 current_delay_ms(0),
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000876 capture_start_ntp_time_ms(-1) {
877 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000878
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000879 std::vector<SsrcGroup> ssrc_groups;
880 int packets_concealed;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000881 int firs_sent;
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000882 int plis_sent;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000883 int nacks_sent;
884 int frame_width;
885 int frame_height;
886 int framerate_rcvd;
887 int framerate_decoded;
888 int framerate_output;
pbos@webrtc.org1ed62242015-02-19 13:57:03 +0000889 // Framerate as sent to the renderer.
890 int framerate_render_input;
891 // Framerate that the renderer reports.
892 int framerate_render_output;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000893
894 // All stats below are gathered per-VideoReceiver, but some will be correlated
895 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC
896 // structures, reflect this in the new layout.
897
898 // Current frame decode latency.
899 int decode_ms;
900 // Maximum observed frame decode latency.
901 int max_decode_ms;
902 // Jitter (network-related) latency.
903 int jitter_buffer_ms;
904 // Requested minimum playout latency.
905 int min_playout_delay_ms;
906 // Requested latency to account for rendering delay.
907 int render_delay_ms;
908 // Target overall delay: network+decode+render, accounting for
909 // min_playout_delay_ms.
910 int target_delay_ms;
911 // Current overall delay, possibly ramping towards target_delay_ms.
912 int current_delay_ms;
buildbot@webrtc.org0581f0b2014-05-06 21:36:31 +0000913
914 // Estimated capture start time in NTP time in ms.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200915 int64_t capture_start_ntp_time_ms;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000916};
917
wu@webrtc.org97077a32013-10-25 21:18:33 +0000918struct DataSenderInfo : public MediaSenderInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000919 DataSenderInfo()
wu@webrtc.org97077a32013-10-25 21:18:33 +0000920 : ssrc(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000921 }
922
Peter Boström0c4e06b2015-10-07 12:23:21 +0200923 uint32_t ssrc;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000924};
925
wu@webrtc.org97077a32013-10-25 21:18:33 +0000926struct DataReceiverInfo : public MediaReceiverInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000927 DataReceiverInfo()
wu@webrtc.org97077a32013-10-25 21:18:33 +0000928 : ssrc(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000929 }
930
Peter Boström0c4e06b2015-10-07 12:23:21 +0200931 uint32_t ssrc;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000932};
933
934struct BandwidthEstimationInfo {
935 BandwidthEstimationInfo()
936 : available_send_bandwidth(0),
937 available_recv_bandwidth(0),
938 target_enc_bitrate(0),
939 actual_enc_bitrate(0),
940 retransmit_bitrate(0),
941 transmit_bitrate(0),
pbos@webrtc.org058b1f12015-03-04 08:54:32 +0000942 bucket_delay(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000943 }
944
945 int available_send_bandwidth;
946 int available_recv_bandwidth;
947 int target_enc_bitrate;
948 int actual_enc_bitrate;
949 int retransmit_bitrate;
950 int transmit_bitrate;
pkasting@chromium.org16825b12015-01-12 21:51:21 +0000951 int64_t bucket_delay;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000952};
953
954struct VoiceMediaInfo {
955 void Clear() {
956 senders.clear();
957 receivers.clear();
958 }
959 std::vector<VoiceSenderInfo> senders;
960 std::vector<VoiceReceiverInfo> receivers;
961};
962
963struct VideoMediaInfo {
964 void Clear() {
965 senders.clear();
966 receivers.clear();
967 bw_estimations.clear();
968 }
969 std::vector<VideoSenderInfo> senders;
970 std::vector<VideoReceiverInfo> receivers;
971 std::vector<BandwidthEstimationInfo> bw_estimations;
972};
973
974struct DataMediaInfo {
975 void Clear() {
976 senders.clear();
977 receivers.clear();
978 }
979 std::vector<DataSenderInfo> senders;
980 std::vector<DataReceiverInfo> receivers;
981};
982
Peter Thatcherc2ee2c82015-08-07 16:05:34 -0700983template <class Codec>
984struct RtpParameters {
985 virtual std::string ToString() {
986 std::ostringstream ost;
987 ost << "{";
988 ost << "codecs: " << VectorToString(codecs) << ", ";
989 ost << "extensions: " << VectorToString(extensions);
990 ost << "}";
991 return ost.str();
992 }
993
994 std::vector<Codec> codecs;
995 std::vector<RtpHeaderExtension> extensions;
996 // TODO(pthatcher): Add streams.
997};
998
999template <class Codec, class Options>
1000struct RtpSendParameters : RtpParameters<Codec> {
1001 std::string ToString() override {
1002 std::ostringstream ost;
1003 ost << "{";
1004 ost << "codecs: " << VectorToString(this->codecs) << ", ";
1005 ost << "extensions: " << VectorToString(this->extensions) << ", ";
1006 ost << "max_bandiwidth_bps: " << max_bandwidth_bps << ", ";
1007 ost << "options: " << options.ToString();
1008 ost << "}";
1009 return ost.str();
1010 }
1011
1012 int max_bandwidth_bps = -1;
1013 Options options;
1014};
1015
1016struct AudioSendParameters : RtpSendParameters<AudioCodec, AudioOptions> {
1017};
1018
1019struct AudioRecvParameters : RtpParameters<AudioCodec> {
1020};
1021
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001022class VoiceMediaChannel : public MediaChannel {
1023 public:
1024 enum Error {
1025 ERROR_NONE = 0, // No error.
1026 ERROR_OTHER, // Other errors.
1027 ERROR_REC_DEVICE_OPEN_FAILED = 100, // Could not open mic.
1028 ERROR_REC_DEVICE_MUTED, // Mic was muted by OS.
1029 ERROR_REC_DEVICE_SILENT, // No background noise picked up.
1030 ERROR_REC_DEVICE_SATURATION, // Mic input is clipping.
1031 ERROR_REC_DEVICE_REMOVED, // Mic was removed while active.
1032 ERROR_REC_RUNTIME_ERROR, // Processing is encountering errors.
1033 ERROR_REC_SRTP_ERROR, // Generic SRTP failure.
1034 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1035 ERROR_REC_TYPING_NOISE_DETECTED, // Typing noise is detected.
1036 ERROR_PLAY_DEVICE_OPEN_FAILED = 200, // Could not open playout.
1037 ERROR_PLAY_DEVICE_MUTED, // Playout muted by OS.
1038 ERROR_PLAY_DEVICE_REMOVED, // Playout removed while active.
1039 ERROR_PLAY_RUNTIME_ERROR, // Errors in voice processing.
1040 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure.
1041 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1042 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected.
1043 };
1044
1045 VoiceMediaChannel() {}
1046 virtual ~VoiceMediaChannel() {}
Fredrik Solenbergb071a192015-09-17 16:42:56 +02001047 virtual bool SetSendParameters(const AudioSendParameters& params) = 0;
1048 virtual bool SetRecvParameters(const AudioRecvParameters& params) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001049 // Starts or stops playout of received audio.
1050 virtual bool SetPlayout(bool playout) = 0;
1051 // Starts or stops sending (and potentially capture) of local audio.
1052 virtual bool SetSend(SendFlags flag) = 0;
solenberg1dd98f32015-09-10 01:57:14 -07001053 // Configure stream for sending.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001054 virtual bool SetAudioSend(uint32_t ssrc,
1055 bool enable,
solenbergdfc8f4f2015-10-01 02:31:10 -07001056 const AudioOptions* options,
solenberg1dd98f32015-09-10 01:57:14 -07001057 AudioRenderer* renderer) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001058 // Gets current energy levels for all incoming streams.
1059 virtual bool GetActiveStreams(AudioInfo::StreamList* actives) = 0;
1060 // Get the current energy level of the stream sent to the speaker.
1061 virtual int GetOutputLevel() = 0;
1062 // Get the time in milliseconds since last recorded keystroke, or negative.
1063 virtual int GetTimeSinceLastTyping() = 0;
1064 // Temporarily exposed field for tuning typing detect options.
1065 virtual void SetTypingDetectionParameters(int time_window,
1066 int cost_per_typing, int reporting_threshold, int penalty_decay,
1067 int type_event_delay) = 0;
solenberg4bac9c52015-10-09 02:32:53 -07001068 // Set speaker output volume of the specified ssrc.
1069 virtual bool SetOutputVolume(uint32_t ssrc, double volume) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001070 // Returns if the telephone-event has been negotiated.
1071 virtual bool CanInsertDtmf() { return false; }
1072 // Send and/or play a DTMF |event| according to the |flags|.
1073 // The DTMF out-of-band signal will be used on sending.
1074 // The |ssrc| should be either 0 or a valid send stream ssrc.
henrike@webrtc.org9de257d2013-07-17 14:42:53 +00001075 // The valid value for the |event| are 0 to 15 which corresponding to
1076 // DTMF event 0-9, *, #, A-D.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001077 virtual bool InsertDtmf(uint32_t ssrc,
1078 int event,
1079 int duration,
1080 int flags) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001081 // Gets quality stats for the channel.
1082 virtual bool GetStats(VoiceMediaInfo* info) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001083};
1084
Peter Thatcherc2ee2c82015-08-07 16:05:34 -07001085struct VideoSendParameters : RtpSendParameters<VideoCodec, VideoOptions> {
1086};
1087
1088struct VideoRecvParameters : RtpParameters<VideoCodec> {
1089};
1090
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001091class VideoMediaChannel : public MediaChannel {
1092 public:
1093 enum Error {
1094 ERROR_NONE = 0, // No error.
1095 ERROR_OTHER, // Other errors.
1096 ERROR_REC_DEVICE_OPEN_FAILED = 100, // Could not open camera.
1097 ERROR_REC_DEVICE_NO_DEVICE, // No camera.
1098 ERROR_REC_DEVICE_IN_USE, // Device is in already use.
1099 ERROR_REC_DEVICE_REMOVED, // Device is removed.
1100 ERROR_REC_SRTP_ERROR, // Generic sender SRTP failure.
1101 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1102 ERROR_REC_CPU_MAX_CANT_DOWNGRADE, // Can't downgrade capture anymore.
1103 ERROR_PLAY_SRTP_ERROR = 200, // Generic receiver SRTP failure.
1104 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1105 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected.
1106 };
1107
1108 VideoMediaChannel() : renderer_(NULL) {}
1109 virtual ~VideoMediaChannel() {}
Fredrik Solenbergb071a192015-09-17 16:42:56 +02001110
1111 virtual bool SetSendParameters(const VideoSendParameters& params) = 0;
1112 virtual bool SetRecvParameters(const VideoRecvParameters& params) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001113 // Gets the currently set codecs/payload types to be used for outgoing media.
1114 virtual bool GetSendCodec(VideoCodec* send_codec) = 0;
1115 // Sets the format of a specified outgoing stream.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001116 virtual bool SetSendStreamFormat(uint32_t ssrc,
1117 const VideoFormat& format) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001118 // Starts or stops transmission (and potentially capture) of local video.
1119 virtual bool SetSend(bool send) = 0;
solenberg1dd98f32015-09-10 01:57:14 -07001120 // Configure stream for sending.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001121 virtual bool SetVideoSend(uint32_t ssrc,
1122 bool enable,
solenberg1dd98f32015-09-10 01:57:14 -07001123 const VideoOptions* options) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001124 // Sets the renderer object to be used for the specified stream.
1125 // If SSRC is 0, the renderer is used for the 'default' stream.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001126 virtual bool SetRenderer(uint32_t ssrc, VideoRenderer* renderer) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001127 // If |ssrc| is 0, replace the default capturer (engine capturer) with
1128 // |capturer|. If |ssrc| is non zero create a new stream with |ssrc| as SSRC.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001129 virtual bool SetCapturer(uint32_t ssrc, VideoCapturer* capturer) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001130 // Gets quality stats for the channel.
pbos@webrtc.org058b1f12015-03-04 08:54:32 +00001131 virtual bool GetStats(VideoMediaInfo* info) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001132 // Send an intra frame to the receivers.
1133 virtual bool SendIntraFrame() = 0;
1134 // Reuqest each of the remote senders to send an intra frame.
1135 virtual bool RequestIntraFrame() = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001136 virtual void UpdateAspectRatio(int ratio_w, int ratio_h) = 0;
1137
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001138 protected:
1139 VideoRenderer *renderer_;
1140};
1141
1142enum DataMessageType {
mallinath@webrtc.org1112c302013-09-23 20:34:45 +00001143 // Chrome-Internal use only. See SctpDataMediaChannel for the actual PPID
1144 // values.
1145 DMT_NONE = 0,
1146 DMT_CONTROL = 1,
1147 DMT_BINARY = 2,
1148 DMT_TEXT = 3,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001149};
1150
1151// Info about data received in DataMediaChannel. For use in
1152// DataMediaChannel::SignalDataReceived and in all of the signals that
1153// signal fires, on up the chain.
1154struct ReceiveDataParams {
1155 // The in-packet stream indentifier.
1156 // For SCTP, this is really SID, not SSRC.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001157 uint32_t ssrc;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001158 // The type of message (binary, text, or control).
1159 DataMessageType type;
1160 // A per-stream value incremented per packet in the stream.
1161 int seq_num;
1162 // A per-stream value monotonically increasing with time.
1163 int timestamp;
1164
1165 ReceiveDataParams() :
1166 ssrc(0),
1167 type(DMT_TEXT),
1168 seq_num(0),
1169 timestamp(0) {
1170 }
1171};
1172
1173struct SendDataParams {
1174 // The in-packet stream indentifier.
1175 // For SCTP, this is really SID, not SSRC.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001176 uint32_t ssrc;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001177 // The type of message (binary, text, or control).
1178 DataMessageType type;
1179
1180 // For SCTP, whether to send messages flagged as ordered or not.
1181 // If false, messages can be received out of order.
1182 bool ordered;
1183 // For SCTP, whether the messages are sent reliably or not.
1184 // If false, messages may be lost.
1185 bool reliable;
1186 // For SCTP, if reliable == false, provide partial reliability by
1187 // resending up to this many times. Either count or millis
1188 // is supported, not both at the same time.
1189 int max_rtx_count;
1190 // For SCTP, if reliable == false, provide partial reliability by
1191 // resending for up to this many milliseconds. Either count or millis
1192 // is supported, not both at the same time.
1193 int max_rtx_ms;
1194
1195 SendDataParams() :
1196 ssrc(0),
1197 type(DMT_TEXT),
1198 // TODO(pthatcher): Make these true by default?
1199 ordered(false),
1200 reliable(false),
1201 max_rtx_count(0),
1202 max_rtx_ms(0) {
1203 }
1204};
1205
1206enum SendDataResult { SDR_SUCCESS, SDR_ERROR, SDR_BLOCK };
1207
Peter Thatcherc2ee2c82015-08-07 16:05:34 -07001208struct DataOptions {
1209 std::string ToString() {
1210 return "{}";
1211 }
1212};
1213
1214struct DataSendParameters : RtpSendParameters<DataCodec, DataOptions> {
1215 std::string ToString() {
1216 std::ostringstream ost;
1217 // Options and extensions aren't used.
1218 ost << "{";
1219 ost << "codecs: " << VectorToString(codecs) << ", ";
1220 ost << "max_bandiwidth_bps: " << max_bandwidth_bps;
1221 ost << "}";
1222 return ost.str();
1223 }
1224};
1225
1226struct DataRecvParameters : RtpParameters<DataCodec> {
1227};
1228
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001229class DataMediaChannel : public MediaChannel {
1230 public:
1231 enum Error {
1232 ERROR_NONE = 0, // No error.
1233 ERROR_OTHER, // Other errors.
1234 ERROR_SEND_SRTP_ERROR = 200, // Generic SRTP failure.
1235 ERROR_SEND_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1236 ERROR_RECV_SRTP_ERROR, // Generic SRTP failure.
1237 ERROR_RECV_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1238 ERROR_RECV_SRTP_REPLAY, // Packet replay detected.
1239 };
1240
1241 virtual ~DataMediaChannel() {}
1242
Fredrik Solenbergb071a192015-09-17 16:42:56 +02001243 virtual bool SetSendParameters(const DataSendParameters& params) = 0;
1244 virtual bool SetRecvParameters(const DataRecvParameters& params) = 0;
wu@webrtc.orga9890802013-12-13 00:21:03 +00001245
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001246 // TODO(pthatcher): Implement this.
1247 virtual bool GetStats(DataMediaInfo* info) { return true; }
1248
1249 virtual bool SetSend(bool send) = 0;
1250 virtual bool SetReceive(bool receive) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001251
1252 virtual bool SendData(
1253 const SendDataParams& params,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001254 const rtc::Buffer& payload,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001255 SendDataResult* result = NULL) = 0;
1256 // Signals when data is received (params, data, len)
1257 sigslot::signal3<const ReceiveDataParams&,
1258 const char*,
1259 size_t> SignalDataReceived;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +00001260 // Signal when the media channel is ready to send the stream. Arguments are:
1261 // writable(bool)
1262 sigslot::signal1<bool> SignalReadyToSend;
buildbot@webrtc.org1d66be22014-05-29 22:54:24 +00001263 // Signal for notifying that the remote side has closed the DataChannel.
Peter Boström0c4e06b2015-10-07 12:23:21 +02001264 sigslot::signal1<uint32_t> SignalStreamClosedRemotely;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001265};
1266
1267} // namespace cricket
1268
1269#endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_