blob: 1a84704c2475b404fc50e9cf2914067ebab255b6 [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
34#include "talk/base/basictypes.h"
35#include "talk/base/buffer.h"
mallinath@webrtc.org1112c302013-09-23 20:34:45 +000036#include "talk/base/dscp.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000037#include "talk/base/logging.h"
38#include "talk/base/sigslot.h"
39#include "talk/base/socket.h"
40#include "talk/base/window.h"
41#include "talk/media/base/codec.h"
42#include "talk/media/base/constants.h"
43#include "talk/media/base/streamparams.h"
44// TODO(juberti): re-evaluate this include
45#include "talk/session/media/audiomonitor.h"
46
47namespace talk_base {
48class 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;
65
66// Used in AudioOptions and VideoOptions to signify "unset" values.
67template <class T>
68class Settable {
69 public:
70 Settable() : set_(false), val_() {}
71 explicit Settable(T val) : set_(true), val_(val) {}
72
73 bool IsSet() const {
74 return set_;
75 }
76
77 bool Get(T* out) const {
78 *out = val_;
79 return set_;
80 }
81
82 T GetWithDefaultIfUnset(const T& default_value) const {
83 return set_ ? val_ : default_value;
84 }
85
86 virtual void Set(T val) {
87 set_ = true;
88 val_ = val;
89 }
90
91 void Clear() {
92 Set(T());
93 set_ = false;
94 }
95
96 void SetFrom(const Settable<T>& o) {
97 // Set this value based on the value of o, iff o is set. If this value is
98 // set and o is unset, the current value will be unchanged.
99 T val;
100 if (o.Get(&val)) {
101 Set(val);
102 }
103 }
104
105 std::string ToString() const {
106 return set_ ? talk_base::ToString(val_) : "";
107 }
108
109 bool operator==(const Settable<T>& o) const {
110 // Equal if both are unset with any value or both set with the same value.
111 return (set_ == o.set_) && (!set_ || (val_ == o.val_));
112 }
113
114 bool operator!=(const Settable<T>& o) const {
115 return !operator==(o);
116 }
117
118 protected:
119 void InitializeValue(const T &val) {
120 val_ = val;
121 }
122
123 private:
124 bool set_;
125 T val_;
126};
127
128class SettablePercent : public Settable<float> {
129 public:
130 virtual void Set(float val) {
131 if (val < 0) {
132 val = 0;
133 }
134 if (val > 1.0) {
135 val = 1.0;
136 }
137 Settable<float>::Set(val);
138 }
139};
140
141template <class T>
142static std::string ToStringIfSet(const char* key, const Settable<T>& val) {
143 std::string str;
144 if (val.IsSet()) {
145 str = key;
146 str += ": ";
147 str += val.ToString();
148 str += ", ";
149 }
150 return str;
151}
152
153// Options that can be applied to a VoiceMediaChannel or a VoiceMediaEngine.
154// Used to be flags, but that makes it hard to selectively apply options.
155// We are moving all of the setting of options to structs like this,
156// but some things currently still use flags.
157struct AudioOptions {
158 void SetAll(const AudioOptions& change) {
159 echo_cancellation.SetFrom(change.echo_cancellation);
160 auto_gain_control.SetFrom(change.auto_gain_control);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000161 rx_auto_gain_control.SetFrom(change.rx_auto_gain_control);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000162 noise_suppression.SetFrom(change.noise_suppression);
163 highpass_filter.SetFrom(change.highpass_filter);
164 stereo_swapping.SetFrom(change.stereo_swapping);
165 typing_detection.SetFrom(change.typing_detection);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000166 aecm_generate_comfort_noise.SetFrom(change.aecm_generate_comfort_noise);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000167 conference_mode.SetFrom(change.conference_mode);
168 adjust_agc_delta.SetFrom(change.adjust_agc_delta);
169 experimental_agc.SetFrom(change.experimental_agc);
170 experimental_aec.SetFrom(change.experimental_aec);
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000171 experimental_ns.SetFrom(change.experimental_ns);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000172 aec_dump.SetFrom(change.aec_dump);
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000173 experimental_acm.SetFrom(change.experimental_acm);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000174 tx_agc_target_dbov.SetFrom(change.tx_agc_target_dbov);
175 tx_agc_digital_compression_gain.SetFrom(
176 change.tx_agc_digital_compression_gain);
177 tx_agc_limiter.SetFrom(change.tx_agc_limiter);
178 rx_agc_target_dbov.SetFrom(change.rx_agc_target_dbov);
179 rx_agc_digital_compression_gain.SetFrom(
180 change.rx_agc_digital_compression_gain);
181 rx_agc_limiter.SetFrom(change.rx_agc_limiter);
182 recording_sample_rate.SetFrom(change.recording_sample_rate);
183 playout_sample_rate.SetFrom(change.playout_sample_rate);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000184 dscp.SetFrom(change.dscp);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000185 }
186
187 bool operator==(const AudioOptions& o) const {
188 return echo_cancellation == o.echo_cancellation &&
189 auto_gain_control == o.auto_gain_control &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000190 rx_auto_gain_control == o.rx_auto_gain_control &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000191 noise_suppression == o.noise_suppression &&
192 highpass_filter == o.highpass_filter &&
193 stereo_swapping == o.stereo_swapping &&
194 typing_detection == o.typing_detection &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000195 aecm_generate_comfort_noise == o.aecm_generate_comfort_noise &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000196 conference_mode == o.conference_mode &&
197 experimental_agc == o.experimental_agc &&
198 experimental_aec == o.experimental_aec &&
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000199 experimental_ns == o.experimental_ns &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000200 adjust_agc_delta == o.adjust_agc_delta &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000201 aec_dump == o.aec_dump &&
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000202 experimental_acm == o.experimental_acm &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000203 tx_agc_target_dbov == o.tx_agc_target_dbov &&
204 tx_agc_digital_compression_gain == o.tx_agc_digital_compression_gain &&
205 tx_agc_limiter == o.tx_agc_limiter &&
206 rx_agc_target_dbov == o.rx_agc_target_dbov &&
207 rx_agc_digital_compression_gain == o.rx_agc_digital_compression_gain &&
208 rx_agc_limiter == o.rx_agc_limiter &&
209 recording_sample_rate == o.recording_sample_rate &&
wu@webrtc.orgde305012013-10-31 15:40:38 +0000210 playout_sample_rate == o.playout_sample_rate &&
211 dscp == o.dscp;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000212 }
213
214 std::string ToString() const {
215 std::ostringstream ost;
216 ost << "AudioOptions {";
217 ost << ToStringIfSet("aec", echo_cancellation);
218 ost << ToStringIfSet("agc", auto_gain_control);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000219 ost << ToStringIfSet("rx_agc", rx_auto_gain_control);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000220 ost << ToStringIfSet("ns", noise_suppression);
221 ost << ToStringIfSet("hf", highpass_filter);
222 ost << ToStringIfSet("swap", stereo_swapping);
223 ost << ToStringIfSet("typing", typing_detection);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000224 ost << ToStringIfSet("comfort_noise", aecm_generate_comfort_noise);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000225 ost << ToStringIfSet("conference", conference_mode);
226 ost << ToStringIfSet("agc_delta", adjust_agc_delta);
227 ost << ToStringIfSet("experimental_agc", experimental_agc);
228 ost << ToStringIfSet("experimental_aec", experimental_aec);
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000229 ost << ToStringIfSet("experimental_ns", experimental_ns);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000230 ost << ToStringIfSet("aec_dump", aec_dump);
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000231 ost << ToStringIfSet("experimental_acm", experimental_acm);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000232 ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov);
233 ost << ToStringIfSet("tx_agc_digital_compression_gain",
234 tx_agc_digital_compression_gain);
235 ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter);
236 ost << ToStringIfSet("rx_agc_target_dbov", rx_agc_target_dbov);
237 ost << ToStringIfSet("rx_agc_digital_compression_gain",
238 rx_agc_digital_compression_gain);
239 ost << ToStringIfSet("rx_agc_limiter", rx_agc_limiter);
240 ost << ToStringIfSet("recording_sample_rate", recording_sample_rate);
241 ost << ToStringIfSet("playout_sample_rate", playout_sample_rate);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000242 ost << ToStringIfSet("dscp", dscp);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000243 ost << "}";
244 return ost.str();
245 }
246
247 // Audio processing that attempts to filter away the output signal from
248 // later inbound pickup.
249 Settable<bool> echo_cancellation;
250 // Audio processing to adjust the sensitivity of the local mic dynamically.
251 Settable<bool> auto_gain_control;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000252 // Audio processing to apply gain to the remote audio.
253 Settable<bool> rx_auto_gain_control;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000254 // 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;
260 // Audio processing to detect typing.
261 Settable<bool> typing_detection;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000262 Settable<bool> aecm_generate_comfort_noise;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000263 Settable<bool> conference_mode;
264 Settable<int> adjust_agc_delta;
265 Settable<bool> experimental_agc;
266 Settable<bool> experimental_aec;
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000267 Settable<bool> experimental_ns;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000268 Settable<bool> aec_dump;
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000269 Settable<bool> experimental_acm;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000270 // Note that tx_agc_* only applies to non-experimental AGC.
271 Settable<uint16> tx_agc_target_dbov;
272 Settable<uint16> tx_agc_digital_compression_gain;
273 Settable<bool> tx_agc_limiter;
274 Settable<uint16> rx_agc_target_dbov;
275 Settable<uint16> rx_agc_digital_compression_gain;
276 Settable<bool> rx_agc_limiter;
277 Settable<uint32> recording_sample_rate;
278 Settable<uint32> playout_sample_rate;
wu@webrtc.orgde305012013-10-31 15:40:38 +0000279 // Set DSCP value for packet sent from audio channel.
280 Settable<bool> dscp;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000281};
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.
287struct VideoOptions {
288 VideoOptions() {
289 process_adaptation_threshhold.Set(kProcessCpuThreshold);
290 system_low_adaptation_threshhold.Set(kLowSystemCpuThreshold);
291 system_high_adaptation_threshhold.Set(kHighSystemCpuThreshold);
292 }
293
294 void SetAll(const VideoOptions& change) {
295 adapt_input_to_encoder.SetFrom(change.adapt_input_to_encoder);
296 adapt_input_to_cpu_usage.SetFrom(change.adapt_input_to_cpu_usage);
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000297 adapt_cpu_with_smoothing.SetFrom(change.adapt_cpu_with_smoothing);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000298 adapt_view_switch.SetFrom(change.adapt_view_switch);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000299 video_adapt_third.SetFrom(change.video_adapt_third);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000300 video_noise_reduction.SetFrom(change.video_noise_reduction);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000301 video_one_layer_screencast.SetFrom(change.video_one_layer_screencast);
302 video_high_bitrate.SetFrom(change.video_high_bitrate);
303 video_watermark.SetFrom(change.video_watermark);
304 video_temporal_layer_screencast.SetFrom(
305 change.video_temporal_layer_screencast);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000306 video_temporal_layer_realtime.SetFrom(
307 change.video_temporal_layer_realtime);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000308 video_leaky_bucket.SetFrom(change.video_leaky_bucket);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000309 cpu_overuse_detection.SetFrom(change.cpu_overuse_detection);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000310 conference_mode.SetFrom(change.conference_mode);
311 process_adaptation_threshhold.SetFrom(change.process_adaptation_threshhold);
312 system_low_adaptation_threshhold.SetFrom(
313 change.system_low_adaptation_threshhold);
314 system_high_adaptation_threshhold.SetFrom(
315 change.system_high_adaptation_threshhold);
316 buffered_mode_latency.SetFrom(change.buffered_mode_latency);
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000317 lower_min_bitrate.SetFrom(change.lower_min_bitrate);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000318 dscp.SetFrom(change.dscp);
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000319 suspend_below_min_bitrate.SetFrom(change.suspend_below_min_bitrate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000320 }
321
322 bool operator==(const VideoOptions& o) const {
323 return adapt_input_to_encoder == o.adapt_input_to_encoder &&
324 adapt_input_to_cpu_usage == o.adapt_input_to_cpu_usage &&
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000325 adapt_cpu_with_smoothing == o.adapt_cpu_with_smoothing &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000326 adapt_view_switch == o.adapt_view_switch &&
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000327 video_adapt_third == o.video_adapt_third &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000328 video_noise_reduction == o.video_noise_reduction &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000329 video_one_layer_screencast == o.video_one_layer_screencast &&
330 video_high_bitrate == o.video_high_bitrate &&
331 video_watermark == o.video_watermark &&
332 video_temporal_layer_screencast == o.video_temporal_layer_screencast &&
wu@webrtc.org97077a32013-10-25 21:18:33 +0000333 video_temporal_layer_realtime == o.video_temporal_layer_realtime &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000334 video_leaky_bucket == o.video_leaky_bucket &&
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000335 cpu_overuse_detection == o.cpu_overuse_detection &&
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000336 conference_mode == o.conference_mode &&
337 process_adaptation_threshhold == o.process_adaptation_threshhold &&
338 system_low_adaptation_threshhold ==
339 o.system_low_adaptation_threshhold &&
340 system_high_adaptation_threshhold ==
341 o.system_high_adaptation_threshhold &&
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000342 buffered_mode_latency == o.buffered_mode_latency &&
wu@webrtc.orgde305012013-10-31 15:40:38 +0000343 lower_min_bitrate == o.lower_min_bitrate &&
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000344 dscp == o.dscp &&
345 suspend_below_min_bitrate == o.suspend_below_min_bitrate;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000346 }
347
348 std::string ToString() const {
349 std::ostringstream ost;
350 ost << "VideoOptions {";
351 ost << ToStringIfSet("encoder adaption", adapt_input_to_encoder);
352 ost << ToStringIfSet("cpu adaption", adapt_input_to_cpu_usage);
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000353 ost << ToStringIfSet("cpu adaptation smoothing", adapt_cpu_with_smoothing);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000354 ost << ToStringIfSet("adapt view switch", adapt_view_switch);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000355 ost << ToStringIfSet("video adapt third", video_adapt_third);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000356 ost << ToStringIfSet("noise reduction", video_noise_reduction);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000357 ost << ToStringIfSet("1 layer screencast", video_one_layer_screencast);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000358 ost << ToStringIfSet("high bitrate", video_high_bitrate);
359 ost << ToStringIfSet("watermark", video_watermark);
360 ost << ToStringIfSet("video temporal layer screencast",
361 video_temporal_layer_screencast);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000362 ost << ToStringIfSet("video temporal layer realtime",
363 video_temporal_layer_realtime);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000364 ost << ToStringIfSet("leaky bucket", video_leaky_bucket);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000365 ost << ToStringIfSet("cpu overuse detection", cpu_overuse_detection);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000366 ost << ToStringIfSet("conference mode", conference_mode);
367 ost << ToStringIfSet("process", process_adaptation_threshhold);
368 ost << ToStringIfSet("low", system_low_adaptation_threshhold);
369 ost << ToStringIfSet("high", system_high_adaptation_threshhold);
370 ost << ToStringIfSet("buffered mode latency", buffered_mode_latency);
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000371 ost << ToStringIfSet("lower min bitrate", lower_min_bitrate);
wu@webrtc.orgde305012013-10-31 15:40:38 +0000372 ost << ToStringIfSet("dscp", dscp);
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000373 ost << ToStringIfSet("suspend below min bitrate",
374 suspend_below_min_bitrate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000375 ost << "}";
376 return ost.str();
377 }
378
379 // Encoder adaption, which is the gd callback in LMI, and TBA in WebRTC.
380 Settable<bool> adapt_input_to_encoder;
381 // Enable CPU adaptation?
382 Settable<bool> adapt_input_to_cpu_usage;
henrike@webrtc.org28654cb2013-07-22 21:07:49 +0000383 // Enable CPU adaptation smoothing?
384 Settable<bool> adapt_cpu_with_smoothing;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000385 // Enable Adapt View Switch?
386 Settable<bool> adapt_view_switch;
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000387 // Enable video adapt third?
388 Settable<bool> video_adapt_third;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000389 // Enable denoising?
390 Settable<bool> video_noise_reduction;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000391 // Experimental: Enable one layer screencast?
392 Settable<bool> video_one_layer_screencast;
393 // Experimental: Enable WebRtc higher bitrate?
394 Settable<bool> video_high_bitrate;
395 // Experimental: Add watermark to the rendered video image.
396 Settable<bool> video_watermark;
397 // Experimental: Enable WebRTC layered screencast.
398 Settable<bool> video_temporal_layer_screencast;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000399 // Experimental: Enable WebRTC temporal layer strategy for realtime video.
400 Settable<bool> video_temporal_layer_realtime;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000401 // Enable WebRTC leaky bucket when sending media packets.
402 Settable<bool> video_leaky_bucket;
wu@webrtc.orgcadf9042013-08-30 21:24:16 +0000403 // Enable WebRTC Cpu Overuse Detection, which is a new version of the CPU
404 // adaptation algorithm. So this option will override the
405 // |adapt_input_to_cpu_usage|.
406 Settable<bool> cpu_overuse_detection;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000407 // Use conference mode?
408 Settable<bool> conference_mode;
409 // Threshhold for process cpu adaptation. (Process limit)
410 SettablePercent process_adaptation_threshhold;
411 // Low threshhold for cpu adaptation. (Adapt up)
412 SettablePercent system_low_adaptation_threshhold;
413 // High threshhold for cpu adaptation. (Adapt down)
414 SettablePercent system_high_adaptation_threshhold;
415 // Specify buffered mode latency in milliseconds.
416 Settable<int> buffered_mode_latency;
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000417 // Make minimum configured send bitrate even lower than usual, at 30kbit.
418 Settable<bool> lower_min_bitrate;
wu@webrtc.orgde305012013-10-31 15:40:38 +0000419 // Set DSCP value for packet sent from video channel.
420 Settable<bool> dscp;
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000421 // Enable WebRTC suspension of video. No video frames will be sent when the
422 // bitrate is below the configured minimum bitrate.
423 Settable<bool> suspend_below_min_bitrate;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000424};
425
426// A class for playing out soundclips.
427class SoundclipMedia {
428 public:
429 enum SoundclipFlags {
430 SF_LOOP = 1,
431 };
432
433 virtual ~SoundclipMedia() {}
434
435 // Plays a sound out to the speakers with the given audio stream. The stream
436 // must be 16-bit little-endian 16 kHz PCM. If a stream is already playing
437 // on this SoundclipMedia, it is stopped. If clip is NULL, nothing is played.
438 // Returns whether it was successful.
439 virtual bool PlaySound(const char *clip, int len, int flags) = 0;
440};
441
442struct RtpHeaderExtension {
443 RtpHeaderExtension() : id(0) {}
444 RtpHeaderExtension(const std::string& u, int i) : uri(u), id(i) {}
445 std::string uri;
446 int id;
447 // TODO(juberti): SendRecv direction;
448
449 bool operator==(const RtpHeaderExtension& ext) const {
450 // id is a reserved word in objective-c. Therefore the id attribute has to
451 // be a fully qualified name in order to compile on IOS.
452 return this->id == ext.id &&
453 uri == ext.uri;
454 }
455};
456
457// Returns the named header extension if found among all extensions, NULL
458// otherwise.
459inline const RtpHeaderExtension* FindHeaderExtension(
460 const std::vector<RtpHeaderExtension>& extensions,
461 const std::string& name) {
462 for (std::vector<RtpHeaderExtension>::const_iterator it = extensions.begin();
463 it != extensions.end(); ++it) {
464 if (it->uri == name)
465 return &(*it);
466 }
467 return NULL;
468}
469
470enum MediaChannelOptions {
471 // Tune the stream for conference mode.
472 OPT_CONFERENCE = 0x0001
473};
474
475enum VoiceMediaChannelOptions {
476 // Tune the audio stream for vcs with different target levels.
477 OPT_AGC_MINUS_10DB = 0x80000000
478};
479
480// DTMF flags to control if a DTMF tone should be played and/or sent.
481enum DtmfFlags {
482 DF_PLAY = 0x01,
483 DF_SEND = 0x02,
484};
485
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000486class MediaChannel : public sigslot::has_slots<> {
487 public:
488 class NetworkInterface {
489 public:
490 enum SocketType { ST_RTP, ST_RTCP };
mallinath@webrtc.org1112c302013-09-23 20:34:45 +0000491 virtual bool SendPacket(
492 talk_base::Buffer* packet,
493 talk_base::DiffServCodePoint dscp = talk_base::DSCP_NO_CHANGE) = 0;
494 virtual bool SendRtcp(
495 talk_base::Buffer* packet,
496 talk_base::DiffServCodePoint dscp = talk_base::DSCP_NO_CHANGE) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000497 virtual int SetOption(SocketType type, talk_base::Socket::Option opt,
498 int option) = 0;
499 virtual ~NetworkInterface() {}
500 };
501
502 MediaChannel() : network_interface_(NULL) {}
503 virtual ~MediaChannel() {}
504
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000505 // Sets the abstract interface class for sending RTP/RTCP data.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000506 virtual void SetInterface(NetworkInterface *iface) {
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000507 talk_base::CritScope cs(&network_interface_crit_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000508 network_interface_ = iface;
509 }
510
511 // Called when a RTP packet is received.
wu@webrtc.orga9890802013-12-13 00:21:03 +0000512 virtual void OnPacketReceived(talk_base::Buffer* packet,
513 const talk_base::PacketTime& packet_time) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000514 // Called when a RTCP packet is received.
wu@webrtc.orga9890802013-12-13 00:21:03 +0000515 virtual void OnRtcpReceived(talk_base::Buffer* packet,
516 const talk_base::PacketTime& packet_time) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000517 // Called when the socket's ability to send has changed.
518 virtual void OnReadyToSend(bool ready) = 0;
519 // Creates a new outgoing media stream with SSRCs and CNAME as described
520 // by sp.
521 virtual bool AddSendStream(const StreamParams& sp) = 0;
522 // Removes an outgoing media stream.
523 // ssrc must be the first SSRC of the media stream if the stream uses
524 // multiple SSRCs.
525 virtual bool RemoveSendStream(uint32 ssrc) = 0;
526 // Creates a new incoming media stream with SSRCs and CNAME as described
527 // by sp.
528 virtual bool AddRecvStream(const StreamParams& sp) = 0;
529 // Removes an incoming media stream.
530 // ssrc must be the first SSRC of the media stream if the stream uses
531 // multiple SSRCs.
532 virtual bool RemoveRecvStream(uint32 ssrc) = 0;
533
534 // Mutes the channel.
535 virtual bool MuteStream(uint32 ssrc, bool on) = 0;
536
537 // Sets the RTP extension headers and IDs to use when sending RTP.
538 virtual bool SetRecvRtpHeaderExtensions(
539 const std::vector<RtpHeaderExtension>& extensions) = 0;
540 virtual bool SetSendRtpHeaderExtensions(
541 const std::vector<RtpHeaderExtension>& extensions) = 0;
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +0000542 // Sets the initial bandwidth to use when sending starts.
543 virtual bool SetStartSendBandwidth(int bps) = 0;
544 // Sets the maximum allowed bandwidth to use when sending data.
545 virtual bool SetMaxSendBandwidth(int bps) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000546
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000547 // Base method to send packet using NetworkInterface.
548 bool SendPacket(talk_base::Buffer* packet) {
549 return DoSendPacket(packet, false);
550 }
551
552 bool SendRtcp(talk_base::Buffer* packet) {
553 return DoSendPacket(packet, true);
554 }
555
556 int SetOption(NetworkInterface::SocketType type,
557 talk_base::Socket::Option opt,
558 int option) {
559 talk_base::CritScope cs(&network_interface_crit_);
560 if (!network_interface_)
561 return -1;
562
563 return network_interface_->SetOption(type, opt, option);
564 }
565
wu@webrtc.orgde305012013-10-31 15:40:38 +0000566 protected:
567 // This method sets DSCP |value| on both RTP and RTCP channels.
568 int SetDscp(talk_base::DiffServCodePoint value) {
569 int ret;
570 ret = SetOption(NetworkInterface::ST_RTP,
571 talk_base::Socket::OPT_DSCP,
572 value);
573 if (ret == 0) {
574 ret = SetOption(NetworkInterface::ST_RTCP,
575 talk_base::Socket::OPT_DSCP,
576 value);
577 }
578 return ret;
579 }
580
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000581 private:
582 bool DoSendPacket(talk_base::Buffer* packet, bool rtcp) {
583 talk_base::CritScope cs(&network_interface_crit_);
584 if (!network_interface_)
585 return false;
586
587 return (!rtcp) ? network_interface_->SendPacket(packet) :
588 network_interface_->SendRtcp(packet);
589 }
590
591 // |network_interface_| can be accessed from the worker_thread and
592 // from any MediaEngine threads. This critical section is to protect accessing
593 // of network_interface_ object.
594 talk_base::CriticalSection network_interface_crit_;
595 NetworkInterface* network_interface_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000596};
597
598enum SendFlags {
599 SEND_NOTHING,
600 SEND_RINGBACKTONE,
601 SEND_MICROPHONE
602};
603
wu@webrtc.org97077a32013-10-25 21:18:33 +0000604// The stats information is structured as follows:
605// Media are represented by either MediaSenderInfo or MediaReceiverInfo.
606// Media contains a vector of SSRC infos that are exclusively used by this
607// media. (SSRCs shared between media streams can't be represented.)
608
609// Information about an SSRC.
610// This data may be locally recorded, or received in an RTCP SR or RR.
611struct SsrcSenderInfo {
612 SsrcSenderInfo()
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000613 : ssrc(0),
wu@webrtc.org97077a32013-10-25 21:18:33 +0000614 timestamp(0) {
615 }
616 uint32 ssrc;
617 double timestamp; // NTP timestamp, represented as seconds since epoch.
618};
619
620struct SsrcReceiverInfo {
621 SsrcReceiverInfo()
622 : ssrc(0),
623 timestamp(0) {
624 }
625 uint32 ssrc;
626 double timestamp;
627};
628
629struct MediaSenderInfo {
630 MediaSenderInfo()
631 : bytes_sent(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000632 packets_sent(0),
633 packets_lost(0),
634 fraction_lost(0.0),
wu@webrtc.org97077a32013-10-25 21:18:33 +0000635 rtt_ms(0) {
636 }
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000637 void add_ssrc(const SsrcSenderInfo& stat) {
638 local_stats.push_back(stat);
639 }
640 // Temporary utility function for call sites that only provide SSRC.
641 // As more info is added into SsrcSenderInfo, this function should go away.
642 void add_ssrc(uint32 ssrc) {
643 SsrcSenderInfo stat;
644 stat.ssrc = ssrc;
645 add_ssrc(stat);
646 }
647 // Utility accessor for clients that are only interested in ssrc numbers.
648 std::vector<uint32> ssrcs() const {
649 std::vector<uint32> retval;
650 for (std::vector<SsrcSenderInfo>::const_iterator it = local_stats.begin();
651 it != local_stats.end(); ++it) {
652 retval.push_back(it->ssrc);
653 }
654 return retval;
655 }
656 // Utility accessor for clients that make the assumption only one ssrc
657 // exists per media.
658 // This will eventually go away.
659 uint32 ssrc() const {
660 if (local_stats.size() > 0) {
661 return local_stats[0].ssrc;
662 } else {
663 return 0;
664 }
665 }
wu@webrtc.org97077a32013-10-25 21:18:33 +0000666 int64 bytes_sent;
667 int packets_sent;
668 int packets_lost;
669 float fraction_lost;
670 int rtt_ms;
671 std::string codec_name;
672 std::vector<SsrcSenderInfo> local_stats;
673 std::vector<SsrcReceiverInfo> remote_stats;
674};
675
676struct MediaReceiverInfo {
677 MediaReceiverInfo()
678 : bytes_rcvd(0),
679 packets_rcvd(0),
680 packets_lost(0),
681 fraction_lost(0.0) {
682 }
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000683 void add_ssrc(const SsrcReceiverInfo& stat) {
684 local_stats.push_back(stat);
685 }
686 // Temporary utility function for call sites that only provide SSRC.
687 // As more info is added into SsrcSenderInfo, this function should go away.
688 void add_ssrc(uint32 ssrc) {
689 SsrcReceiverInfo stat;
690 stat.ssrc = ssrc;
691 add_ssrc(stat);
692 }
693 std::vector<uint32> ssrcs() const {
694 std::vector<uint32> retval;
695 for (std::vector<SsrcReceiverInfo>::const_iterator it = local_stats.begin();
696 it != local_stats.end(); ++it) {
697 retval.push_back(it->ssrc);
698 }
699 return retval;
700 }
701 // Utility accessor for clients that make the assumption only one ssrc
702 // exists per media.
703 // This will eventually go away.
704 uint32 ssrc() const {
705 if (local_stats.size() > 0) {
706 return local_stats[0].ssrc;
707 } else {
708 return 0;
709 }
710 }
711
wu@webrtc.org97077a32013-10-25 21:18:33 +0000712 int64 bytes_rcvd;
713 int packets_rcvd;
714 int packets_lost;
715 float fraction_lost;
716 std::vector<SsrcReceiverInfo> local_stats;
717 std::vector<SsrcSenderInfo> remote_stats;
718};
719
720struct VoiceSenderInfo : public MediaSenderInfo {
721 VoiceSenderInfo()
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000722 : ext_seqnum(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000723 jitter_ms(0),
724 audio_level(0),
725 aec_quality_min(0.0),
726 echo_delay_median_ms(0),
727 echo_delay_std_ms(0),
728 echo_return_loss(0),
wu@webrtc.org967bfff2013-09-19 05:49:50 +0000729 echo_return_loss_enhancement(0),
730 typing_noise_detected(false) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000731 }
732
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000733 int ext_seqnum;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000734 int jitter_ms;
735 int audio_level;
736 float aec_quality_min;
737 int echo_delay_median_ms;
738 int echo_delay_std_ms;
739 int echo_return_loss;
740 int echo_return_loss_enhancement;
wu@webrtc.org967bfff2013-09-19 05:49:50 +0000741 bool typing_noise_detected;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000742};
743
wu@webrtc.org97077a32013-10-25 21:18:33 +0000744struct VoiceReceiverInfo : public MediaReceiverInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000745 VoiceReceiverInfo()
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000746 : ext_seqnum(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000747 jitter_ms(0),
748 jitter_buffer_ms(0),
749 jitter_buffer_preferred_ms(0),
750 delay_estimate_ms(0),
751 audio_level(0),
henrike@webrtc.orgb8c254a2014-02-14 23:38:45 +0000752 expand_rate(0),
753 decoding_calls_to_silence_generator(0),
754 decoding_calls_to_neteq(0),
755 decoding_normal(0),
756 decoding_plc(0),
757 decoding_cng(0),
758 decoding_plc_cng(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000759 }
760
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000761 int ext_seqnum;
762 int jitter_ms;
763 int jitter_buffer_ms;
764 int jitter_buffer_preferred_ms;
765 int delay_estimate_ms;
766 int audio_level;
767 // fraction of synthesized speech inserted through pre-emptive expansion
768 float expand_rate;
henrike@webrtc.orgb8c254a2014-02-14 23:38:45 +0000769 int decoding_calls_to_silence_generator;
770 int decoding_calls_to_neteq;
771 int decoding_normal;
772 int decoding_plc;
773 int decoding_cng;
774 int decoding_plc_cng;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000775};
776
wu@webrtc.org97077a32013-10-25 21:18:33 +0000777struct VideoSenderInfo : public MediaSenderInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000778 VideoSenderInfo()
wu@webrtc.org97077a32013-10-25 21:18:33 +0000779 : packets_cached(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000780 firs_rcvd(0),
781 nacks_rcvd(0),
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000782 input_frame_width(0),
783 input_frame_height(0),
784 send_frame_width(0),
785 send_frame_height(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000786 framerate_input(0),
787 framerate_sent(0),
788 nominal_bitrate(0),
789 preferred_bitrate(0),
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000790 adapt_reason(0),
791 capture_jitter_ms(0),
wu@webrtc.org9caf2762013-12-11 18:25:07 +0000792 avg_encode_ms(0),
793 encode_usage_percent(0),
794 capture_queue_delay_ms_per_s(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000795 }
796
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000797 std::vector<SsrcGroup> ssrc_groups;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000798 int packets_cached;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000799 int firs_rcvd;
800 int nacks_rcvd;
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +0000801 int input_frame_width;
802 int input_frame_height;
803 int send_frame_width;
804 int send_frame_height;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000805 int framerate_input;
806 int framerate_sent;
807 int nominal_bitrate;
808 int preferred_bitrate;
809 int adapt_reason;
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000810 int capture_jitter_ms;
811 int avg_encode_ms;
wu@webrtc.org9caf2762013-12-11 18:25:07 +0000812 int encode_usage_percent;
813 int capture_queue_delay_ms_per_s;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000814};
815
wu@webrtc.org97077a32013-10-25 21:18:33 +0000816struct VideoReceiverInfo : public MediaReceiverInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000817 VideoReceiverInfo()
wu@webrtc.org97077a32013-10-25 21:18:33 +0000818 : packets_concealed(0),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000819 firs_sent(0),
820 nacks_sent(0),
821 frame_width(0),
822 frame_height(0),
823 framerate_rcvd(0),
824 framerate_decoded(0),
825 framerate_output(0),
826 framerate_render_input(0),
wu@webrtc.org97077a32013-10-25 21:18:33 +0000827 framerate_render_output(0),
828 decode_ms(0),
829 max_decode_ms(0),
830 jitter_buffer_ms(0),
831 min_playout_delay_ms(0),
832 render_delay_ms(0),
833 target_delay_ms(0),
834 current_delay_ms(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000835 }
836
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000837 std::vector<SsrcGroup> ssrc_groups;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000838 int packets_concealed;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000839 int firs_sent;
840 int nacks_sent;
841 int frame_width;
842 int frame_height;
843 int framerate_rcvd;
844 int framerate_decoded;
845 int framerate_output;
846 // Framerate as sent to the renderer.
847 int framerate_render_input;
848 // Framerate that the renderer reports.
849 int framerate_render_output;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000850
851 // All stats below are gathered per-VideoReceiver, but some will be correlated
852 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC
853 // structures, reflect this in the new layout.
854
855 // Current frame decode latency.
856 int decode_ms;
857 // Maximum observed frame decode latency.
858 int max_decode_ms;
859 // Jitter (network-related) latency.
860 int jitter_buffer_ms;
861 // Requested minimum playout latency.
862 int min_playout_delay_ms;
863 // Requested latency to account for rendering delay.
864 int render_delay_ms;
865 // Target overall delay: network+decode+render, accounting for
866 // min_playout_delay_ms.
867 int target_delay_ms;
868 // Current overall delay, possibly ramping towards target_delay_ms.
869 int current_delay_ms;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000870};
871
wu@webrtc.org97077a32013-10-25 21:18:33 +0000872struct DataSenderInfo : public MediaSenderInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000873 DataSenderInfo()
wu@webrtc.org97077a32013-10-25 21:18:33 +0000874 : ssrc(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000875 }
876
877 uint32 ssrc;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000878};
879
wu@webrtc.org97077a32013-10-25 21:18:33 +0000880struct DataReceiverInfo : public MediaReceiverInfo {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000881 DataReceiverInfo()
wu@webrtc.org97077a32013-10-25 21:18:33 +0000882 : ssrc(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000883 }
884
885 uint32 ssrc;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000886};
887
888struct BandwidthEstimationInfo {
889 BandwidthEstimationInfo()
890 : available_send_bandwidth(0),
891 available_recv_bandwidth(0),
892 target_enc_bitrate(0),
893 actual_enc_bitrate(0),
894 retransmit_bitrate(0),
895 transmit_bitrate(0),
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +0000896 bucket_delay(0),
897 total_received_propagation_delta_ms(0) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000898 }
899
900 int available_send_bandwidth;
901 int available_recv_bandwidth;
902 int target_enc_bitrate;
903 int actual_enc_bitrate;
904 int retransmit_bitrate;
905 int transmit_bitrate;
906 int bucket_delay;
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +0000907 // The following stats are only valid when
908 // StatsOptions::include_received_propagation_stats is true.
909 int total_received_propagation_delta_ms;
910 std::vector<int> recent_received_propagation_delta_ms;
911 std::vector<int64> recent_received_packet_group_arrival_time_ms;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000912};
913
914struct VoiceMediaInfo {
915 void Clear() {
916 senders.clear();
917 receivers.clear();
918 }
919 std::vector<VoiceSenderInfo> senders;
920 std::vector<VoiceReceiverInfo> receivers;
921};
922
923struct VideoMediaInfo {
924 void Clear() {
925 senders.clear();
926 receivers.clear();
927 bw_estimations.clear();
928 }
929 std::vector<VideoSenderInfo> senders;
930 std::vector<VideoReceiverInfo> receivers;
931 std::vector<BandwidthEstimationInfo> bw_estimations;
932};
933
934struct DataMediaInfo {
935 void Clear() {
936 senders.clear();
937 receivers.clear();
938 }
939 std::vector<DataSenderInfo> senders;
940 std::vector<DataReceiverInfo> receivers;
941};
942
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +0000943struct StatsOptions {
944 StatsOptions() : include_received_propagation_stats(false) {}
945
946 bool include_received_propagation_stats;
947};
948
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000949class VoiceMediaChannel : public MediaChannel {
950 public:
951 enum Error {
952 ERROR_NONE = 0, // No error.
953 ERROR_OTHER, // Other errors.
954 ERROR_REC_DEVICE_OPEN_FAILED = 100, // Could not open mic.
955 ERROR_REC_DEVICE_MUTED, // Mic was muted by OS.
956 ERROR_REC_DEVICE_SILENT, // No background noise picked up.
957 ERROR_REC_DEVICE_SATURATION, // Mic input is clipping.
958 ERROR_REC_DEVICE_REMOVED, // Mic was removed while active.
959 ERROR_REC_RUNTIME_ERROR, // Processing is encountering errors.
960 ERROR_REC_SRTP_ERROR, // Generic SRTP failure.
961 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets.
962 ERROR_REC_TYPING_NOISE_DETECTED, // Typing noise is detected.
963 ERROR_PLAY_DEVICE_OPEN_FAILED = 200, // Could not open playout.
964 ERROR_PLAY_DEVICE_MUTED, // Playout muted by OS.
965 ERROR_PLAY_DEVICE_REMOVED, // Playout removed while active.
966 ERROR_PLAY_RUNTIME_ERROR, // Errors in voice processing.
967 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure.
968 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets.
969 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected.
970 };
971
972 VoiceMediaChannel() {}
973 virtual ~VoiceMediaChannel() {}
974 // Sets the codecs/payload types to be used for incoming media.
975 virtual bool SetRecvCodecs(const std::vector<AudioCodec>& codecs) = 0;
976 // Sets the codecs/payload types to be used for outgoing media.
977 virtual bool SetSendCodecs(const std::vector<AudioCodec>& codecs) = 0;
978 // Starts or stops playout of received audio.
979 virtual bool SetPlayout(bool playout) = 0;
980 // Starts or stops sending (and potentially capture) of local audio.
981 virtual bool SetSend(SendFlags flag) = 0;
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000982 // Sets the renderer object to be used for the specified remote audio stream.
983 virtual bool SetRemoteRenderer(uint32 ssrc, AudioRenderer* renderer) = 0;
984 // Sets the renderer object to be used for the specified local audio stream.
985 virtual bool SetLocalRenderer(uint32 ssrc, AudioRenderer* renderer) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000986 // Gets current energy levels for all incoming streams.
987 virtual bool GetActiveStreams(AudioInfo::StreamList* actives) = 0;
988 // Get the current energy level of the stream sent to the speaker.
989 virtual int GetOutputLevel() = 0;
990 // Get the time in milliseconds since last recorded keystroke, or negative.
991 virtual int GetTimeSinceLastTyping() = 0;
992 // Temporarily exposed field for tuning typing detect options.
993 virtual void SetTypingDetectionParameters(int time_window,
994 int cost_per_typing, int reporting_threshold, int penalty_decay,
995 int type_event_delay) = 0;
996 // Set left and right scale for speaker output volume of the specified ssrc.
997 virtual bool SetOutputScaling(uint32 ssrc, double left, double right) = 0;
998 // Get left and right scale for speaker output volume of the specified ssrc.
999 virtual bool GetOutputScaling(uint32 ssrc, double* left, double* right) = 0;
1000 // Specifies a ringback tone to be played during call setup.
1001 virtual bool SetRingbackTone(const char *buf, int len) = 0;
1002 // Plays or stops the aforementioned ringback tone
1003 virtual bool PlayRingbackTone(uint32 ssrc, bool play, bool loop) = 0;
1004 // Returns if the telephone-event has been negotiated.
1005 virtual bool CanInsertDtmf() { return false; }
1006 // Send and/or play a DTMF |event| according to the |flags|.
1007 // The DTMF out-of-band signal will be used on sending.
1008 // The |ssrc| should be either 0 or a valid send stream ssrc.
henrike@webrtc.org9de257d2013-07-17 14:42:53 +00001009 // The valid value for the |event| are 0 to 15 which corresponding to
1010 // DTMF event 0-9, *, #, A-D.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001011 virtual bool InsertDtmf(uint32 ssrc, int event, int duration, int flags) = 0;
1012 // Gets quality stats for the channel.
1013 virtual bool GetStats(VoiceMediaInfo* info) = 0;
1014 // Gets last reported error for this media channel.
1015 virtual void GetLastMediaError(uint32* ssrc,
1016 VoiceMediaChannel::Error* error) {
1017 ASSERT(error != NULL);
1018 *error = ERROR_NONE;
1019 }
1020 // Sets the media options to use.
1021 virtual bool SetOptions(const AudioOptions& options) = 0;
1022 virtual bool GetOptions(AudioOptions* options) const = 0;
1023
1024 // Signal errors from MediaChannel. Arguments are:
1025 // ssrc(uint32), and error(VoiceMediaChannel::Error).
1026 sigslot::signal2<uint32, VoiceMediaChannel::Error> SignalMediaError;
1027};
1028
1029class VideoMediaChannel : public MediaChannel {
1030 public:
1031 enum Error {
1032 ERROR_NONE = 0, // No error.
1033 ERROR_OTHER, // Other errors.
1034 ERROR_REC_DEVICE_OPEN_FAILED = 100, // Could not open camera.
1035 ERROR_REC_DEVICE_NO_DEVICE, // No camera.
1036 ERROR_REC_DEVICE_IN_USE, // Device is in already use.
1037 ERROR_REC_DEVICE_REMOVED, // Device is removed.
1038 ERROR_REC_SRTP_ERROR, // Generic sender SRTP failure.
1039 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1040 ERROR_REC_CPU_MAX_CANT_DOWNGRADE, // Can't downgrade capture anymore.
1041 ERROR_PLAY_SRTP_ERROR = 200, // Generic receiver SRTP failure.
1042 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1043 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected.
1044 };
1045
1046 VideoMediaChannel() : renderer_(NULL) {}
1047 virtual ~VideoMediaChannel() {}
1048 // Sets the codecs/payload types to be used for incoming media.
1049 virtual bool SetRecvCodecs(const std::vector<VideoCodec>& codecs) = 0;
1050 // Sets the codecs/payload types to be used for outgoing media.
1051 virtual bool SetSendCodecs(const std::vector<VideoCodec>& codecs) = 0;
1052 // Gets the currently set codecs/payload types to be used for outgoing media.
1053 virtual bool GetSendCodec(VideoCodec* send_codec) = 0;
1054 // Sets the format of a specified outgoing stream.
1055 virtual bool SetSendStreamFormat(uint32 ssrc, const VideoFormat& format) = 0;
1056 // Starts or stops playout of received video.
1057 virtual bool SetRender(bool render) = 0;
1058 // Starts or stops transmission (and potentially capture) of local video.
1059 virtual bool SetSend(bool send) = 0;
1060 // Sets the renderer object to be used for the specified stream.
1061 // If SSRC is 0, the renderer is used for the 'default' stream.
1062 virtual bool SetRenderer(uint32 ssrc, VideoRenderer* renderer) = 0;
1063 // If |ssrc| is 0, replace the default capturer (engine capturer) with
1064 // |capturer|. If |ssrc| is non zero create a new stream with |ssrc| as SSRC.
1065 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) = 0;
1066 // Gets quality stats for the channel.
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001067 virtual bool GetStats(const StatsOptions& options, VideoMediaInfo* info) = 0;
1068 // This is needed for MediaMonitor to use the same template for voice, video
1069 // and data MediaChannels.
1070 bool GetStats(VideoMediaInfo* info) {
1071 return GetStats(StatsOptions(), info);
1072 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001073
1074 // Send an intra frame to the receivers.
1075 virtual bool SendIntraFrame() = 0;
1076 // Reuqest each of the remote senders to send an intra frame.
1077 virtual bool RequestIntraFrame() = 0;
1078 // Sets the media options to use.
1079 virtual bool SetOptions(const VideoOptions& options) = 0;
1080 virtual bool GetOptions(VideoOptions* options) const = 0;
1081 virtual void UpdateAspectRatio(int ratio_w, int ratio_h) = 0;
1082
1083 // Signal errors from MediaChannel. Arguments are:
1084 // ssrc(uint32), and error(VideoMediaChannel::Error).
1085 sigslot::signal2<uint32, Error> SignalMediaError;
1086
1087 protected:
1088 VideoRenderer *renderer_;
1089};
1090
1091enum DataMessageType {
mallinath@webrtc.org1112c302013-09-23 20:34:45 +00001092 // Chrome-Internal use only. See SctpDataMediaChannel for the actual PPID
1093 // values.
1094 DMT_NONE = 0,
1095 DMT_CONTROL = 1,
1096 DMT_BINARY = 2,
1097 DMT_TEXT = 3,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001098};
1099
1100// Info about data received in DataMediaChannel. For use in
1101// DataMediaChannel::SignalDataReceived and in all of the signals that
1102// signal fires, on up the chain.
1103struct ReceiveDataParams {
1104 // The in-packet stream indentifier.
1105 // For SCTP, this is really SID, not SSRC.
1106 uint32 ssrc;
1107 // The type of message (binary, text, or control).
1108 DataMessageType type;
1109 // A per-stream value incremented per packet in the stream.
1110 int seq_num;
1111 // A per-stream value monotonically increasing with time.
1112 int timestamp;
1113
1114 ReceiveDataParams() :
1115 ssrc(0),
1116 type(DMT_TEXT),
1117 seq_num(0),
1118 timestamp(0) {
1119 }
1120};
1121
1122struct SendDataParams {
1123 // The in-packet stream indentifier.
1124 // For SCTP, this is really SID, not SSRC.
1125 uint32 ssrc;
1126 // The type of message (binary, text, or control).
1127 DataMessageType type;
1128
1129 // For SCTP, whether to send messages flagged as ordered or not.
1130 // If false, messages can be received out of order.
1131 bool ordered;
1132 // For SCTP, whether the messages are sent reliably or not.
1133 // If false, messages may be lost.
1134 bool reliable;
1135 // For SCTP, if reliable == false, provide partial reliability by
1136 // resending up to this many times. Either count or millis
1137 // is supported, not both at the same time.
1138 int max_rtx_count;
1139 // For SCTP, if reliable == false, provide partial reliability by
1140 // resending for up to this many milliseconds. Either count or millis
1141 // is supported, not both at the same time.
1142 int max_rtx_ms;
1143
1144 SendDataParams() :
1145 ssrc(0),
1146 type(DMT_TEXT),
1147 // TODO(pthatcher): Make these true by default?
1148 ordered(false),
1149 reliable(false),
1150 max_rtx_count(0),
1151 max_rtx_ms(0) {
1152 }
1153};
1154
1155enum SendDataResult { SDR_SUCCESS, SDR_ERROR, SDR_BLOCK };
1156
1157class DataMediaChannel : public MediaChannel {
1158 public:
1159 enum Error {
1160 ERROR_NONE = 0, // No error.
1161 ERROR_OTHER, // Other errors.
1162 ERROR_SEND_SRTP_ERROR = 200, // Generic SRTP failure.
1163 ERROR_SEND_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1164 ERROR_RECV_SRTP_ERROR, // Generic SRTP failure.
1165 ERROR_RECV_SRTP_AUTH_FAILED, // Failed to authenticate packets.
1166 ERROR_RECV_SRTP_REPLAY, // Packet replay detected.
1167 };
1168
1169 virtual ~DataMediaChannel() {}
1170
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001171 virtual bool SetSendCodecs(const std::vector<DataCodec>& codecs) = 0;
1172 virtual bool SetRecvCodecs(const std::vector<DataCodec>& codecs) = 0;
wu@webrtc.orga9890802013-12-13 00:21:03 +00001173
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001174 virtual bool MuteStream(uint32 ssrc, bool on) { return false; }
1175 // TODO(pthatcher): Implement this.
1176 virtual bool GetStats(DataMediaInfo* info) { return true; }
1177
1178 virtual bool SetSend(bool send) = 0;
1179 virtual bool SetReceive(bool receive) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001180
1181 virtual bool SendData(
1182 const SendDataParams& params,
1183 const talk_base::Buffer& payload,
1184 SendDataResult* result = NULL) = 0;
1185 // Signals when data is received (params, data, len)
1186 sigslot::signal3<const ReceiveDataParams&,
1187 const char*,
1188 size_t> SignalDataReceived;
1189 // Signal errors from MediaChannel. Arguments are:
1190 // ssrc(uint32), and error(DataMediaChannel::Error).
1191 sigslot::signal2<uint32, DataMediaChannel::Error> SignalMediaError;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +00001192 // Signal when the media channel is ready to send the stream. Arguments are:
1193 // writable(bool)
1194 sigslot::signal1<bool> SignalReadyToSend;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001195};
1196
1197} // namespace cricket
1198
1199#endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_