OLD | NEW |
---|---|
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2004 Google Inc. | 3 * Copyright 2004 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
87 for (size_t i = 0; i < vals.size(); ++i) { | 87 for (size_t i = 0; i < vals.size(); ++i) { |
88 if (i > 0) { | 88 if (i > 0) { |
89 ost << ", "; | 89 ost << ", "; |
90 } | 90 } |
91 ost << vals[i].ToString(); | 91 ost << vals[i].ToString(); |
92 } | 92 } |
93 ost << "]"; | 93 ost << "]"; |
94 return ost.str(); | 94 return ost.str(); |
95 } | 95 } |
96 | 96 |
97 struct MediaChannelOptions { | |
98 MediaChannelOptions() {} | |
pbos-webrtc
2016/01/29 16:22:56
Drop the ctor unless you want to move it to a .cc
nisse-webrtc
2016/02/01 08:29:49
I think I'm showing C++ ignorance here. The thing
| |
99 // Set DSCP value for packet sent from media channel. This flag | |
100 // comes from the PeerConnection constraint 'googDscp'. | |
101 bool dscp; // TODO(nisse): More descriptive name? | |
pbos-webrtc
2016/01/29 16:22:56
enable_dscp? or enable_dscp_41 or whatever it was
nisse-webrtc
2016/02/01 08:29:49
enable_dcsp sounds good. And the actual codepoint
| |
102 }; | |
103 | |
97 // Options that can be applied to a VoiceMediaChannel or a VoiceMediaEngine. | 104 // Options that can be applied to a VoiceMediaChannel or a VoiceMediaEngine. |
98 // Used to be flags, but that makes it hard to selectively apply options. | 105 // Used to be flags, but that makes it hard to selectively apply options. |
99 // We are moving all of the setting of options to structs like this, | 106 // We are moving all of the setting of options to structs like this, |
100 // but some things currently still use flags. | 107 // but some things currently still use flags. |
101 struct AudioOptions { | 108 struct AudioOptions { |
102 void SetAll(const AudioOptions& change) { | 109 void SetAll(const AudioOptions& change) { |
103 SetFrom(&echo_cancellation, change.echo_cancellation); | 110 SetFrom(&echo_cancellation, change.echo_cancellation); |
104 SetFrom(&auto_gain_control, change.auto_gain_control); | 111 SetFrom(&auto_gain_control, change.auto_gain_control); |
105 SetFrom(&noise_suppression, change.noise_suppression); | 112 SetFrom(&noise_suppression, change.noise_suppression); |
106 SetFrom(&highpass_filter, change.highpass_filter); | 113 SetFrom(&highpass_filter, change.highpass_filter); |
(...skipping 10 matching lines...) Expand all Loading... | |
117 SetFrom(&extended_filter_aec, change.extended_filter_aec); | 124 SetFrom(&extended_filter_aec, change.extended_filter_aec); |
118 SetFrom(&delay_agnostic_aec, change.delay_agnostic_aec); | 125 SetFrom(&delay_agnostic_aec, change.delay_agnostic_aec); |
119 SetFrom(&experimental_ns, change.experimental_ns); | 126 SetFrom(&experimental_ns, change.experimental_ns); |
120 SetFrom(&aec_dump, change.aec_dump); | 127 SetFrom(&aec_dump, change.aec_dump); |
121 SetFrom(&tx_agc_target_dbov, change.tx_agc_target_dbov); | 128 SetFrom(&tx_agc_target_dbov, change.tx_agc_target_dbov); |
122 SetFrom(&tx_agc_digital_compression_gain, | 129 SetFrom(&tx_agc_digital_compression_gain, |
123 change.tx_agc_digital_compression_gain); | 130 change.tx_agc_digital_compression_gain); |
124 SetFrom(&tx_agc_limiter, change.tx_agc_limiter); | 131 SetFrom(&tx_agc_limiter, change.tx_agc_limiter); |
125 SetFrom(&recording_sample_rate, change.recording_sample_rate); | 132 SetFrom(&recording_sample_rate, change.recording_sample_rate); |
126 SetFrom(&playout_sample_rate, change.playout_sample_rate); | 133 SetFrom(&playout_sample_rate, change.playout_sample_rate); |
127 SetFrom(&dscp, change.dscp); | |
128 SetFrom(&combined_audio_video_bwe, change.combined_audio_video_bwe); | 134 SetFrom(&combined_audio_video_bwe, change.combined_audio_video_bwe); |
129 } | 135 } |
130 | 136 |
131 bool operator==(const AudioOptions& o) const { | 137 bool operator==(const AudioOptions& o) const { |
132 return echo_cancellation == o.echo_cancellation && | 138 return echo_cancellation == o.echo_cancellation && |
133 auto_gain_control == o.auto_gain_control && | 139 auto_gain_control == o.auto_gain_control && |
134 noise_suppression == o.noise_suppression && | 140 noise_suppression == o.noise_suppression && |
135 highpass_filter == o.highpass_filter && | 141 highpass_filter == o.highpass_filter && |
136 stereo_swapping == o.stereo_swapping && | 142 stereo_swapping == o.stereo_swapping && |
137 audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets && | 143 audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets && |
138 audio_jitter_buffer_fast_accelerate == | 144 audio_jitter_buffer_fast_accelerate == |
139 o.audio_jitter_buffer_fast_accelerate && | 145 o.audio_jitter_buffer_fast_accelerate && |
140 typing_detection == o.typing_detection && | 146 typing_detection == o.typing_detection && |
141 aecm_generate_comfort_noise == o.aecm_generate_comfort_noise && | 147 aecm_generate_comfort_noise == o.aecm_generate_comfort_noise && |
142 conference_mode == o.conference_mode && | 148 conference_mode == o.conference_mode && |
143 experimental_agc == o.experimental_agc && | 149 experimental_agc == o.experimental_agc && |
144 extended_filter_aec == o.extended_filter_aec && | 150 extended_filter_aec == o.extended_filter_aec && |
145 delay_agnostic_aec == o.delay_agnostic_aec && | 151 delay_agnostic_aec == o.delay_agnostic_aec && |
146 experimental_ns == o.experimental_ns && | 152 experimental_ns == o.experimental_ns && |
147 adjust_agc_delta == o.adjust_agc_delta && | 153 adjust_agc_delta == o.adjust_agc_delta && |
148 aec_dump == o.aec_dump && | 154 aec_dump == o.aec_dump && |
149 tx_agc_target_dbov == o.tx_agc_target_dbov && | 155 tx_agc_target_dbov == o.tx_agc_target_dbov && |
150 tx_agc_digital_compression_gain == o.tx_agc_digital_compression_gain && | 156 tx_agc_digital_compression_gain == o.tx_agc_digital_compression_gain && |
151 tx_agc_limiter == o.tx_agc_limiter && | 157 tx_agc_limiter == o.tx_agc_limiter && |
152 recording_sample_rate == o.recording_sample_rate && | 158 recording_sample_rate == o.recording_sample_rate && |
153 playout_sample_rate == o.playout_sample_rate && | 159 playout_sample_rate == o.playout_sample_rate && |
154 dscp == o.dscp && | |
155 combined_audio_video_bwe == o.combined_audio_video_bwe; | 160 combined_audio_video_bwe == o.combined_audio_video_bwe; |
156 } | 161 } |
157 | 162 |
158 std::string ToString() const { | 163 std::string ToString() const { |
159 std::ostringstream ost; | 164 std::ostringstream ost; |
160 ost << "AudioOptions {"; | 165 ost << "AudioOptions {"; |
161 ost << ToStringIfSet("aec", echo_cancellation); | 166 ost << ToStringIfSet("aec", echo_cancellation); |
162 ost << ToStringIfSet("agc", auto_gain_control); | 167 ost << ToStringIfSet("agc", auto_gain_control); |
163 ost << ToStringIfSet("ns", noise_suppression); | 168 ost << ToStringIfSet("ns", noise_suppression); |
164 ost << ToStringIfSet("hf", highpass_filter); | 169 ost << ToStringIfSet("hf", highpass_filter); |
(...skipping 10 matching lines...) Expand all Loading... | |
175 ost << ToStringIfSet("extended_filter_aec", extended_filter_aec); | 180 ost << ToStringIfSet("extended_filter_aec", extended_filter_aec); |
176 ost << ToStringIfSet("delay_agnostic_aec", delay_agnostic_aec); | 181 ost << ToStringIfSet("delay_agnostic_aec", delay_agnostic_aec); |
177 ost << ToStringIfSet("experimental_ns", experimental_ns); | 182 ost << ToStringIfSet("experimental_ns", experimental_ns); |
178 ost << ToStringIfSet("aec_dump", aec_dump); | 183 ost << ToStringIfSet("aec_dump", aec_dump); |
179 ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov); | 184 ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov); |
180 ost << ToStringIfSet("tx_agc_digital_compression_gain", | 185 ost << ToStringIfSet("tx_agc_digital_compression_gain", |
181 tx_agc_digital_compression_gain); | 186 tx_agc_digital_compression_gain); |
182 ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter); | 187 ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter); |
183 ost << ToStringIfSet("recording_sample_rate", recording_sample_rate); | 188 ost << ToStringIfSet("recording_sample_rate", recording_sample_rate); |
184 ost << ToStringIfSet("playout_sample_rate", playout_sample_rate); | 189 ost << ToStringIfSet("playout_sample_rate", playout_sample_rate); |
185 ost << ToStringIfSet("dscp", dscp); | |
186 ost << ToStringIfSet("combined_audio_video_bwe", combined_audio_video_bwe); | 190 ost << ToStringIfSet("combined_audio_video_bwe", combined_audio_video_bwe); |
187 ost << "}"; | 191 ost << "}"; |
188 return ost.str(); | 192 return ost.str(); |
189 } | 193 } |
190 | 194 |
191 // Audio processing that attempts to filter away the output signal from | 195 // Audio processing that attempts to filter away the output signal from |
192 // later inbound pickup. | 196 // later inbound pickup. |
193 rtc::Optional<bool> echo_cancellation; | 197 rtc::Optional<bool> echo_cancellation; |
194 // Audio processing to adjust the sensitivity of the local mic dynamically. | 198 // Audio processing to adjust the sensitivity of the local mic dynamically. |
195 rtc::Optional<bool> auto_gain_control; | 199 rtc::Optional<bool> auto_gain_control; |
(...skipping 16 matching lines...) Expand all Loading... | |
212 rtc::Optional<bool> extended_filter_aec; | 216 rtc::Optional<bool> extended_filter_aec; |
213 rtc::Optional<bool> delay_agnostic_aec; | 217 rtc::Optional<bool> delay_agnostic_aec; |
214 rtc::Optional<bool> experimental_ns; | 218 rtc::Optional<bool> experimental_ns; |
215 rtc::Optional<bool> aec_dump; | 219 rtc::Optional<bool> aec_dump; |
216 // Note that tx_agc_* only applies to non-experimental AGC. | 220 // Note that tx_agc_* only applies to non-experimental AGC. |
217 rtc::Optional<uint16_t> tx_agc_target_dbov; | 221 rtc::Optional<uint16_t> tx_agc_target_dbov; |
218 rtc::Optional<uint16_t> tx_agc_digital_compression_gain; | 222 rtc::Optional<uint16_t> tx_agc_digital_compression_gain; |
219 rtc::Optional<bool> tx_agc_limiter; | 223 rtc::Optional<bool> tx_agc_limiter; |
220 rtc::Optional<uint32_t> recording_sample_rate; | 224 rtc::Optional<uint32_t> recording_sample_rate; |
221 rtc::Optional<uint32_t> playout_sample_rate; | 225 rtc::Optional<uint32_t> playout_sample_rate; |
222 // Set DSCP value for packet sent from audio channel. | |
223 rtc::Optional<bool> dscp; | |
224 // Enable combined audio+bandwidth BWE. | 226 // Enable combined audio+bandwidth BWE. |
225 rtc::Optional<bool> combined_audio_video_bwe; | 227 rtc::Optional<bool> combined_audio_video_bwe; |
226 | 228 |
227 private: | 229 private: |
228 template <typename T> | 230 template <typename T> |
229 static void SetFrom(rtc::Optional<T>* s, const rtc::Optional<T>& o) { | 231 static void SetFrom(rtc::Optional<T>* s, const rtc::Optional<T>& o) { |
230 if (o) { | 232 if (o) { |
231 *s = o; | 233 *s = o; |
232 } | 234 } |
233 } | 235 } |
234 }; | 236 }; |
235 | 237 |
236 // Options that can be applied to a VideoMediaChannel or a VideoMediaEngine. | 238 // Options that can be applied to a VideoMediaChannel or a VideoMediaEngine. |
237 // Used to be flags, but that makes it hard to selectively apply options. | 239 // Used to be flags, but that makes it hard to selectively apply options. |
238 // We are moving all of the setting of options to structs like this, | 240 // We are moving all of the setting of options to structs like this, |
239 // but some things currently still use flags. | 241 // but some things currently still use flags. |
240 struct VideoOptions { | 242 struct VideoOptions { |
241 void SetAll(const VideoOptions& change) { | 243 void SetAll(const VideoOptions& change) { |
242 SetFrom(&video_noise_reduction, change.video_noise_reduction); | 244 SetFrom(&video_noise_reduction, change.video_noise_reduction); |
243 SetFrom(&cpu_overuse_detection, change.cpu_overuse_detection); | 245 SetFrom(&cpu_overuse_detection, change.cpu_overuse_detection); |
244 SetFrom(&conference_mode, change.conference_mode); | 246 SetFrom(&conference_mode, change.conference_mode); |
245 SetFrom(&dscp, change.dscp); | |
246 SetFrom(&suspend_below_min_bitrate, change.suspend_below_min_bitrate); | 247 SetFrom(&suspend_below_min_bitrate, change.suspend_below_min_bitrate); |
247 SetFrom(&screencast_min_bitrate_kbps, change.screencast_min_bitrate_kbps); | 248 SetFrom(&screencast_min_bitrate_kbps, change.screencast_min_bitrate_kbps); |
248 SetFrom(&disable_prerenderer_smoothing, | 249 SetFrom(&disable_prerenderer_smoothing, |
249 change.disable_prerenderer_smoothing); | 250 change.disable_prerenderer_smoothing); |
250 } | 251 } |
251 | 252 |
252 bool operator==(const VideoOptions& o) const { | 253 bool operator==(const VideoOptions& o) const { |
253 return video_noise_reduction == o.video_noise_reduction && | 254 return video_noise_reduction == o.video_noise_reduction && |
254 cpu_overuse_detection == o.cpu_overuse_detection && | 255 cpu_overuse_detection == o.cpu_overuse_detection && |
255 conference_mode == o.conference_mode && | 256 conference_mode == o.conference_mode && |
256 dscp == o.dscp && | |
257 suspend_below_min_bitrate == o.suspend_below_min_bitrate && | 257 suspend_below_min_bitrate == o.suspend_below_min_bitrate && |
258 screencast_min_bitrate_kbps == o.screencast_min_bitrate_kbps && | 258 screencast_min_bitrate_kbps == o.screencast_min_bitrate_kbps && |
259 disable_prerenderer_smoothing == o.disable_prerenderer_smoothing; | 259 disable_prerenderer_smoothing == o.disable_prerenderer_smoothing; |
260 } | 260 } |
261 | 261 |
262 std::string ToString() const { | 262 std::string ToString() const { |
263 std::ostringstream ost; | 263 std::ostringstream ost; |
264 ost << "VideoOptions {"; | 264 ost << "VideoOptions {"; |
265 ost << ToStringIfSet("noise reduction", video_noise_reduction); | 265 ost << ToStringIfSet("noise reduction", video_noise_reduction); |
266 ost << ToStringIfSet("cpu overuse detection", cpu_overuse_detection); | 266 ost << ToStringIfSet("cpu overuse detection", cpu_overuse_detection); |
267 ost << ToStringIfSet("conference mode", conference_mode); | 267 ost << ToStringIfSet("conference mode", conference_mode); |
268 ost << ToStringIfSet("dscp", dscp); | |
269 ost << ToStringIfSet("suspend below min bitrate", | 268 ost << ToStringIfSet("suspend below min bitrate", |
270 suspend_below_min_bitrate); | 269 suspend_below_min_bitrate); |
271 ost << ToStringIfSet("screencast min bitrate kbps", | 270 ost << ToStringIfSet("screencast min bitrate kbps", |
272 screencast_min_bitrate_kbps); | 271 screencast_min_bitrate_kbps); |
273 ost << "}"; | 272 ost << "}"; |
274 return ost.str(); | 273 return ost.str(); |
275 } | 274 } |
276 | 275 |
277 // Enable denoising? This flag comes from the getUserMedia | 276 // Enable denoising? This flag comes from the getUserMedia |
278 // constraint 'googNoiseReduction', and WebRtcVideoEngine2 passes it | 277 // constraint 'googNoiseReduction', and WebRtcVideoEngine2 passes it |
279 // on to the codec options. Disabled by default. | 278 // on to the codec options. Disabled by default. |
280 rtc::Optional<bool> video_noise_reduction; | 279 rtc::Optional<bool> video_noise_reduction; |
281 // Enable WebRTC Cpu Overuse Detection. This flag comes from the | 280 // Enable WebRTC Cpu Overuse Detection. This flag comes from the |
282 // PeerConnection constraint 'googCpuOveruseDetection' and is | 281 // PeerConnection constraint 'googCpuOveruseDetection' and is |
283 // checked in WebRtcVideoChannel2::OnLoadUpdate, where it's passed | 282 // checked in WebRtcVideoChannel2::OnLoadUpdate, where it's passed |
284 // to VideoCapturer::video_adapter()->OnCpuResolutionRequest. | 283 // to VideoCapturer::video_adapter()->OnCpuResolutionRequest. |
285 rtc::Optional<bool> cpu_overuse_detection; | 284 rtc::Optional<bool> cpu_overuse_detection; |
286 // Use conference mode? This flag comes from the remote | 285 // Use conference mode? This flag comes from the remote |
287 // description's SDP line 'a=x-google-flag:conference', copied over | 286 // description's SDP line 'a=x-google-flag:conference', copied over |
288 // by VideoChannel::SetRemoteContent_w, and ultimately used by | 287 // by VideoChannel::SetRemoteContent_w, and ultimately used by |
289 // conference mode screencast logic in | 288 // conference mode screencast logic in |
290 // WebRtcVideoChannel2::WebRtcVideoSendStream::CreateVideoEncoderConfig. | 289 // WebRtcVideoChannel2::WebRtcVideoSendStream::CreateVideoEncoderConfig. |
291 // The special screencast behaviour is disabled by default. | 290 // The special screencast behaviour is disabled by default. |
292 rtc::Optional<bool> conference_mode; | 291 rtc::Optional<bool> conference_mode; |
293 // Set DSCP value for packet sent from video channel. This flag | |
294 // comes from the PeerConnection constraint 'googDscp' and, | |
295 // WebRtcVideoChannel2::SetOptions checks it before calling | |
296 // MediaChannel::SetDscp. If enabled, rtc::DSCP_AF41 is used. If | |
297 // disabled, which is the default, rtc::DSCP_DEFAULT is used. | |
298 rtc::Optional<bool> dscp; | |
299 // Enable WebRTC suspension of video. No video frames will be sent | 292 // Enable WebRTC suspension of video. No video frames will be sent |
300 // when the bitrate is below the configured minimum bitrate. This | 293 // when the bitrate is below the configured minimum bitrate. This |
301 // flag comes from the PeerConnection constraint | 294 // flag comes from the PeerConnection constraint |
302 // 'googSuspendBelowMinBitrate', and WebRtcVideoChannel2 copies it | 295 // 'googSuspendBelowMinBitrate', and WebRtcVideoChannel2 copies it |
303 // to VideoSendStream::Config::suspend_below_min_bitrate. | 296 // to VideoSendStream::Config::suspend_below_min_bitrate. |
304 rtc::Optional<bool> suspend_below_min_bitrate; | 297 rtc::Optional<bool> suspend_below_min_bitrate; |
305 // Force screencast to use a minimum bitrate. This flag comes from | 298 // Force screencast to use a minimum bitrate. This flag comes from |
306 // the PeerConnection constraint 'googScreencastMinBitrate'. It is | 299 // the PeerConnection constraint 'googScreencastMinBitrate'. It is |
307 // copied to the encoder config by WebRtcVideoChannel2. | 300 // copied to the encoder config by WebRtcVideoChannel2. |
308 rtc::Optional<int> screencast_min_bitrate_kbps; | 301 rtc::Optional<int> screencast_min_bitrate_kbps; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
377 enum SocketType { ST_RTP, ST_RTCP }; | 370 enum SocketType { ST_RTP, ST_RTCP }; |
378 virtual bool SendPacket(rtc::Buffer* packet, | 371 virtual bool SendPacket(rtc::Buffer* packet, |
379 const rtc::PacketOptions& options) = 0; | 372 const rtc::PacketOptions& options) = 0; |
380 virtual bool SendRtcp(rtc::Buffer* packet, | 373 virtual bool SendRtcp(rtc::Buffer* packet, |
381 const rtc::PacketOptions& options) = 0; | 374 const rtc::PacketOptions& options) = 0; |
382 virtual int SetOption(SocketType type, rtc::Socket::Option opt, | 375 virtual int SetOption(SocketType type, rtc::Socket::Option opt, |
383 int option) = 0; | 376 int option) = 0; |
384 virtual ~NetworkInterface() {} | 377 virtual ~NetworkInterface() {} |
385 }; | 378 }; |
386 | 379 |
387 MediaChannel() : network_interface_(NULL) {} | 380 MediaChannel(const MediaChannelOptions& options) |
381 : options_(options), network_interface_(NULL) {} | |
382 MediaChannel() : options_(), network_interface_(NULL) {} | |
388 virtual ~MediaChannel() {} | 383 virtual ~MediaChannel() {} |
389 | 384 |
390 // Sets the abstract interface class for sending RTP/RTCP data. | 385 // Sets the abstract interface class for sending RTP/RTCP data. |
391 virtual void SetInterface(NetworkInterface *iface) { | 386 virtual void SetInterface(NetworkInterface *iface) { |
392 rtc::CritScope cs(&network_interface_crit_); | 387 rtc::CritScope cs(&network_interface_crit_); |
393 network_interface_ = iface; | 388 network_interface_ = iface; |
389 SetDscp(options_.dscp ? DscpValue() : rtc::DSCP_DEFAULT); | |
394 } | 390 } |
395 | 391 virtual rtc::DiffServCodePoint DscpValue() const { return rtc::DSCP_DEFAULT; } |
396 // Called when a RTP packet is received. | 392 // Called when a RTP packet is received. |
397 virtual void OnPacketReceived(rtc::Buffer* packet, | 393 virtual void OnPacketReceived(rtc::Buffer* packet, |
398 const rtc::PacketTime& packet_time) = 0; | 394 const rtc::PacketTime& packet_time) = 0; |
399 // Called when a RTCP packet is received. | 395 // Called when a RTCP packet is received. |
400 virtual void OnRtcpReceived(rtc::Buffer* packet, | 396 virtual void OnRtcpReceived(rtc::Buffer* packet, |
401 const rtc::PacketTime& packet_time) = 0; | 397 const rtc::PacketTime& packet_time) = 0; |
402 // Called when the socket's ability to send has changed. | 398 // Called when the socket's ability to send has changed. |
403 virtual void OnReadyToSend(bool ready) = 0; | 399 virtual void OnReadyToSend(bool ready) = 0; |
404 // Creates a new outgoing media stream with SSRCs and CNAME as described | 400 // Creates a new outgoing media stream with SSRCs and CNAME as described |
405 // by sp. | 401 // by sp. |
(...skipping 27 matching lines...) Expand all Loading... | |
433 int SetOption(NetworkInterface::SocketType type, | 429 int SetOption(NetworkInterface::SocketType type, |
434 rtc::Socket::Option opt, | 430 rtc::Socket::Option opt, |
435 int option) { | 431 int option) { |
436 rtc::CritScope cs(&network_interface_crit_); | 432 rtc::CritScope cs(&network_interface_crit_); |
437 if (!network_interface_) | 433 if (!network_interface_) |
438 return -1; | 434 return -1; |
439 | 435 |
440 return network_interface_->SetOption(type, opt, option); | 436 return network_interface_->SetOption(type, opt, option); |
441 } | 437 } |
442 | 438 |
443 protected: | 439 private: |
444 // This method sets DSCP |value| on both RTP and RTCP channels. | 440 // This method sets DSCP |value| on both RTP and RTCP channels. |
445 int SetDscp(rtc::DiffServCodePoint value) { | 441 int SetDscp(rtc::DiffServCodePoint value) { |
446 int ret; | 442 int ret; |
447 ret = SetOption(NetworkInterface::ST_RTP, | 443 ret = SetOption(NetworkInterface::ST_RTP, |
448 rtc::Socket::OPT_DSCP, | 444 rtc::Socket::OPT_DSCP, |
449 value); | 445 value); |
450 if (ret == 0) { | 446 if (ret == 0) { |
451 ret = SetOption(NetworkInterface::ST_RTCP, | 447 ret = SetOption(NetworkInterface::ST_RTCP, |
452 rtc::Socket::OPT_DSCP, | 448 rtc::Socket::OPT_DSCP, |
453 value); | 449 value); |
454 } | 450 } |
455 return ret; | 451 return ret; |
456 } | 452 } |
457 | 453 |
458 private: | |
459 bool DoSendPacket(rtc::Buffer* packet, | 454 bool DoSendPacket(rtc::Buffer* packet, |
460 bool rtcp, | 455 bool rtcp, |
461 const rtc::PacketOptions& options) { | 456 const rtc::PacketOptions& options) { |
462 rtc::CritScope cs(&network_interface_crit_); | 457 rtc::CritScope cs(&network_interface_crit_); |
463 if (!network_interface_) | 458 if (!network_interface_) |
464 return false; | 459 return false; |
465 | 460 |
466 return (!rtcp) ? network_interface_->SendPacket(packet, options) | 461 return (!rtcp) ? network_interface_->SendPacket(packet, options) |
467 : network_interface_->SendRtcp(packet, options); | 462 : network_interface_->SendRtcp(packet, options); |
468 } | 463 } |
469 | 464 |
465 const MediaChannelOptions options_; | |
470 // |network_interface_| can be accessed from the worker_thread and | 466 // |network_interface_| can be accessed from the worker_thread and |
471 // from any MediaEngine threads. This critical section is to protect accessing | 467 // from any MediaEngine threads. This critical section is to protect accessing |
472 // of network_interface_ object. | 468 // of network_interface_ object. |
473 rtc::CriticalSection network_interface_crit_; | 469 rtc::CriticalSection network_interface_crit_; |
474 NetworkInterface* network_interface_; | 470 NetworkInterface* network_interface_; |
475 }; | 471 }; |
476 | 472 |
477 enum SendFlags { | 473 enum SendFlags { |
478 SEND_NOTHING, | 474 SEND_NOTHING, |
479 SEND_MICROPHONE | 475 SEND_MICROPHONE |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
912 ERROR_REC_TYPING_NOISE_DETECTED, // Typing noise is detected. | 908 ERROR_REC_TYPING_NOISE_DETECTED, // Typing noise is detected. |
913 ERROR_PLAY_DEVICE_OPEN_FAILED = 200, // Could not open playout. | 909 ERROR_PLAY_DEVICE_OPEN_FAILED = 200, // Could not open playout. |
914 ERROR_PLAY_DEVICE_MUTED, // Playout muted by OS. | 910 ERROR_PLAY_DEVICE_MUTED, // Playout muted by OS. |
915 ERROR_PLAY_DEVICE_REMOVED, // Playout removed while active. | 911 ERROR_PLAY_DEVICE_REMOVED, // Playout removed while active. |
916 ERROR_PLAY_RUNTIME_ERROR, // Errors in voice processing. | 912 ERROR_PLAY_RUNTIME_ERROR, // Errors in voice processing. |
917 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure. | 913 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure. |
918 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 914 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
919 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. | 915 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. |
920 }; | 916 }; |
921 | 917 |
918 VoiceMediaChannel(const MediaChannelOptions& options) | |
919 : MediaChannel(options) {} | |
922 VoiceMediaChannel() {} | 920 VoiceMediaChannel() {} |
921 | |
923 virtual ~VoiceMediaChannel() {} | 922 virtual ~VoiceMediaChannel() {} |
924 virtual bool SetSendParameters(const AudioSendParameters& params) = 0; | 923 virtual bool SetSendParameters(const AudioSendParameters& params) = 0; |
925 virtual bool SetRecvParameters(const AudioRecvParameters& params) = 0; | 924 virtual bool SetRecvParameters(const AudioRecvParameters& params) = 0; |
926 // Starts or stops playout of received audio. | 925 // Starts or stops playout of received audio. |
927 virtual bool SetPlayout(bool playout) = 0; | 926 virtual bool SetPlayout(bool playout) = 0; |
928 // Starts or stops sending (and potentially capture) of local audio. | 927 // Starts or stops sending (and potentially capture) of local audio. |
929 virtual bool SetSend(SendFlags flag) = 0; | 928 virtual bool SetSend(SendFlags flag) = 0; |
930 // Configure stream for sending. | 929 // Configure stream for sending. |
931 virtual bool SetAudioSend(uint32_t ssrc, | 930 virtual bool SetAudioSend(uint32_t ssrc, |
932 bool enable, | 931 bool enable, |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
975 ERROR_REC_DEVICE_IN_USE, // Device is in already use. | 974 ERROR_REC_DEVICE_IN_USE, // Device is in already use. |
976 ERROR_REC_DEVICE_REMOVED, // Device is removed. | 975 ERROR_REC_DEVICE_REMOVED, // Device is removed. |
977 ERROR_REC_SRTP_ERROR, // Generic sender SRTP failure. | 976 ERROR_REC_SRTP_ERROR, // Generic sender SRTP failure. |
978 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 977 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
979 ERROR_REC_CPU_MAX_CANT_DOWNGRADE, // Can't downgrade capture anymore. | 978 ERROR_REC_CPU_MAX_CANT_DOWNGRADE, // Can't downgrade capture anymore. |
980 ERROR_PLAY_SRTP_ERROR = 200, // Generic receiver SRTP failure. | 979 ERROR_PLAY_SRTP_ERROR = 200, // Generic receiver SRTP failure. |
981 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 980 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
982 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. | 981 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. |
983 }; | 982 }; |
984 | 983 |
985 VideoMediaChannel() : renderer_(NULL) {} | 984 VideoMediaChannel(const MediaChannelOptions& options) |
985 : MediaChannel(options), renderer_(NULL) {} | |
986 VideoMediaChannel() : MediaChannel(), renderer_(NULL) {} | |
986 virtual ~VideoMediaChannel() {} | 987 virtual ~VideoMediaChannel() {} |
987 | 988 |
988 virtual bool SetSendParameters(const VideoSendParameters& params) = 0; | 989 virtual bool SetSendParameters(const VideoSendParameters& params) = 0; |
989 virtual bool SetRecvParameters(const VideoRecvParameters& params) = 0; | 990 virtual bool SetRecvParameters(const VideoRecvParameters& params) = 0; |
990 // Gets the currently set codecs/payload types to be used for outgoing media. | 991 // Gets the currently set codecs/payload types to be used for outgoing media. |
991 virtual bool GetSendCodec(VideoCodec* send_codec) = 0; | 992 virtual bool GetSendCodec(VideoCodec* send_codec) = 0; |
992 // Sets the format of a specified outgoing stream. | 993 // Sets the format of a specified outgoing stream. |
993 virtual bool SetSendStreamFormat(uint32_t ssrc, | 994 virtual bool SetSendStreamFormat(uint32_t ssrc, |
994 const VideoFormat& format) = 0; | 995 const VideoFormat& format) = 0; |
995 // Starts or stops transmission (and potentially capture) of local video. | 996 // Starts or stops transmission (and potentially capture) of local video. |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1108 enum Error { | 1109 enum Error { |
1109 ERROR_NONE = 0, // No error. | 1110 ERROR_NONE = 0, // No error. |
1110 ERROR_OTHER, // Other errors. | 1111 ERROR_OTHER, // Other errors. |
1111 ERROR_SEND_SRTP_ERROR = 200, // Generic SRTP failure. | 1112 ERROR_SEND_SRTP_ERROR = 200, // Generic SRTP failure. |
1112 ERROR_SEND_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 1113 ERROR_SEND_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
1113 ERROR_RECV_SRTP_ERROR, // Generic SRTP failure. | 1114 ERROR_RECV_SRTP_ERROR, // Generic SRTP failure. |
1114 ERROR_RECV_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 1115 ERROR_RECV_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
1115 ERROR_RECV_SRTP_REPLAY, // Packet replay detected. | 1116 ERROR_RECV_SRTP_REPLAY, // Packet replay detected. |
1116 }; | 1117 }; |
1117 | 1118 |
1119 DataMediaChannel() {} | |
pbos-webrtc
2016/01/29 16:22:56
Do you need/want this ctor?
nisse-webrtc
2016/02/01 08:29:49
Probably not, it's a leftover from an earlier vers
| |
1120 | |
1118 virtual ~DataMediaChannel() {} | 1121 virtual ~DataMediaChannel() {} |
1119 | 1122 |
1120 virtual bool SetSendParameters(const DataSendParameters& params) = 0; | 1123 virtual bool SetSendParameters(const DataSendParameters& params) = 0; |
1121 virtual bool SetRecvParameters(const DataRecvParameters& params) = 0; | 1124 virtual bool SetRecvParameters(const DataRecvParameters& params) = 0; |
1122 | 1125 |
1123 // TODO(pthatcher): Implement this. | 1126 // TODO(pthatcher): Implement this. |
1124 virtual bool GetStats(DataMediaInfo* info) { return true; } | 1127 virtual bool GetStats(DataMediaInfo* info) { return true; } |
1125 | 1128 |
1126 virtual bool SetSend(bool send) = 0; | 1129 virtual bool SetSend(bool send) = 0; |
1127 virtual bool SetReceive(bool receive) = 0; | 1130 virtual bool SetReceive(bool receive) = 0; |
1128 | 1131 |
1129 virtual bool SendData( | 1132 virtual bool SendData( |
1130 const SendDataParams& params, | 1133 const SendDataParams& params, |
1131 const rtc::Buffer& payload, | 1134 const rtc::Buffer& payload, |
1132 SendDataResult* result = NULL) = 0; | 1135 SendDataResult* result = NULL) = 0; |
1133 // Signals when data is received (params, data, len) | 1136 // Signals when data is received (params, data, len) |
1134 sigslot::signal3<const ReceiveDataParams&, | 1137 sigslot::signal3<const ReceiveDataParams&, |
1135 const char*, | 1138 const char*, |
1136 size_t> SignalDataReceived; | 1139 size_t> SignalDataReceived; |
1137 // Signal when the media channel is ready to send the stream. Arguments are: | 1140 // Signal when the media channel is ready to send the stream. Arguments are: |
1138 // writable(bool) | 1141 // writable(bool) |
1139 sigslot::signal1<bool> SignalReadyToSend; | 1142 sigslot::signal1<bool> SignalReadyToSend; |
1140 // Signal for notifying that the remote side has closed the DataChannel. | 1143 // Signal for notifying that the remote side has closed the DataChannel. |
1141 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; | 1144 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; |
1142 }; | 1145 }; |
1143 | 1146 |
1144 } // namespace cricket | 1147 } // namespace cricket |
1145 | 1148 |
1146 #endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_ | 1149 #endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_ |
OLD | NEW |