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 27 matching lines...) Expand all Loading... | |
38 #include "webrtc/base/optional.h" | 38 #include "webrtc/base/optional.h" |
39 #include "webrtc/base/sigslot.h" | 39 #include "webrtc/base/sigslot.h" |
40 #include "webrtc/base/socket.h" | 40 #include "webrtc/base/socket.h" |
41 #include "webrtc/base/window.h" | 41 #include "webrtc/base/window.h" |
42 #include "webrtc/media/base/codec.h" | 42 #include "webrtc/media/base/codec.h" |
43 #include "webrtc/media/base/constants.h" | 43 #include "webrtc/media/base/constants.h" |
44 #include "webrtc/media/base/streamparams.h" | 44 #include "webrtc/media/base/streamparams.h" |
45 #include "webrtc/media/base/videosinkinterface.h" | 45 #include "webrtc/media/base/videosinkinterface.h" |
46 // TODO(juberti): re-evaluate this include | 46 // TODO(juberti): re-evaluate this include |
47 #include "talk/session/media/audiomonitor.h" | 47 #include "talk/session/media/audiomonitor.h" |
48 // TODO(nisse): Improper include? Move declaration of MediaConfig elsewhere? | |
49 #include "talk/app/webrtc/mediacontroller.h" | |
pthatcher1
2016/02/05 17:11:30
We could put MediaConfig here in mediachannel.h or
nisse-webrtc
2016/02/08 09:02:32
mediachannel.h sounds reasonable to me. And then a
| |
48 | 50 |
49 namespace rtc { | 51 namespace rtc { |
50 class Buffer; | 52 class Buffer; |
51 class RateLimiter; | 53 class RateLimiter; |
52 class Timing; | 54 class Timing; |
53 } | 55 } |
54 | 56 |
55 namespace webrtc { | 57 namespace webrtc { |
56 class AudioSinkInterface; | 58 class AudioSinkInterface; |
57 } | 59 } |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
118 SetFrom(&extended_filter_aec, change.extended_filter_aec); | 120 SetFrom(&extended_filter_aec, change.extended_filter_aec); |
119 SetFrom(&delay_agnostic_aec, change.delay_agnostic_aec); | 121 SetFrom(&delay_agnostic_aec, change.delay_agnostic_aec); |
120 SetFrom(&experimental_ns, change.experimental_ns); | 122 SetFrom(&experimental_ns, change.experimental_ns); |
121 SetFrom(&aec_dump, change.aec_dump); | 123 SetFrom(&aec_dump, change.aec_dump); |
122 SetFrom(&tx_agc_target_dbov, change.tx_agc_target_dbov); | 124 SetFrom(&tx_agc_target_dbov, change.tx_agc_target_dbov); |
123 SetFrom(&tx_agc_digital_compression_gain, | 125 SetFrom(&tx_agc_digital_compression_gain, |
124 change.tx_agc_digital_compression_gain); | 126 change.tx_agc_digital_compression_gain); |
125 SetFrom(&tx_agc_limiter, change.tx_agc_limiter); | 127 SetFrom(&tx_agc_limiter, change.tx_agc_limiter); |
126 SetFrom(&recording_sample_rate, change.recording_sample_rate); | 128 SetFrom(&recording_sample_rate, change.recording_sample_rate); |
127 SetFrom(&playout_sample_rate, change.playout_sample_rate); | 129 SetFrom(&playout_sample_rate, change.playout_sample_rate); |
128 SetFrom(&dscp, change.dscp); | |
129 SetFrom(&combined_audio_video_bwe, change.combined_audio_video_bwe); | 130 SetFrom(&combined_audio_video_bwe, change.combined_audio_video_bwe); |
130 } | 131 } |
131 | 132 |
132 bool operator==(const AudioOptions& o) const { | 133 bool operator==(const AudioOptions& o) const { |
133 return echo_cancellation == o.echo_cancellation && | 134 return echo_cancellation == o.echo_cancellation && |
134 auto_gain_control == o.auto_gain_control && | 135 auto_gain_control == o.auto_gain_control && |
135 noise_suppression == o.noise_suppression && | 136 noise_suppression == o.noise_suppression && |
136 highpass_filter == o.highpass_filter && | 137 highpass_filter == o.highpass_filter && |
137 stereo_swapping == o.stereo_swapping && | 138 stereo_swapping == o.stereo_swapping && |
138 audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets && | 139 audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets && |
139 audio_jitter_buffer_fast_accelerate == | 140 audio_jitter_buffer_fast_accelerate == |
140 o.audio_jitter_buffer_fast_accelerate && | 141 o.audio_jitter_buffer_fast_accelerate && |
141 typing_detection == o.typing_detection && | 142 typing_detection == o.typing_detection && |
142 aecm_generate_comfort_noise == o.aecm_generate_comfort_noise && | 143 aecm_generate_comfort_noise == o.aecm_generate_comfort_noise && |
143 conference_mode == o.conference_mode && | 144 conference_mode == o.conference_mode && |
144 experimental_agc == o.experimental_agc && | 145 experimental_agc == o.experimental_agc && |
145 extended_filter_aec == o.extended_filter_aec && | 146 extended_filter_aec == o.extended_filter_aec && |
146 delay_agnostic_aec == o.delay_agnostic_aec && | 147 delay_agnostic_aec == o.delay_agnostic_aec && |
147 experimental_ns == o.experimental_ns && | 148 experimental_ns == o.experimental_ns && |
148 adjust_agc_delta == o.adjust_agc_delta && | 149 adjust_agc_delta == o.adjust_agc_delta && |
149 aec_dump == o.aec_dump && | 150 aec_dump == o.aec_dump && |
150 tx_agc_target_dbov == o.tx_agc_target_dbov && | 151 tx_agc_target_dbov == o.tx_agc_target_dbov && |
151 tx_agc_digital_compression_gain == o.tx_agc_digital_compression_gain && | 152 tx_agc_digital_compression_gain == o.tx_agc_digital_compression_gain && |
152 tx_agc_limiter == o.tx_agc_limiter && | 153 tx_agc_limiter == o.tx_agc_limiter && |
153 recording_sample_rate == o.recording_sample_rate && | 154 recording_sample_rate == o.recording_sample_rate && |
154 playout_sample_rate == o.playout_sample_rate && | 155 playout_sample_rate == o.playout_sample_rate && |
155 dscp == o.dscp && | |
156 combined_audio_video_bwe == o.combined_audio_video_bwe; | 156 combined_audio_video_bwe == o.combined_audio_video_bwe; |
157 } | 157 } |
158 | 158 |
159 std::string ToString() const { | 159 std::string ToString() const { |
160 std::ostringstream ost; | 160 std::ostringstream ost; |
161 ost << "AudioOptions {"; | 161 ost << "AudioOptions {"; |
162 ost << ToStringIfSet("aec", echo_cancellation); | 162 ost << ToStringIfSet("aec", echo_cancellation); |
163 ost << ToStringIfSet("agc", auto_gain_control); | 163 ost << ToStringIfSet("agc", auto_gain_control); |
164 ost << ToStringIfSet("ns", noise_suppression); | 164 ost << ToStringIfSet("ns", noise_suppression); |
165 ost << ToStringIfSet("hf", highpass_filter); | 165 ost << ToStringIfSet("hf", highpass_filter); |
(...skipping 10 matching lines...) Expand all Loading... | |
176 ost << ToStringIfSet("extended_filter_aec", extended_filter_aec); | 176 ost << ToStringIfSet("extended_filter_aec", extended_filter_aec); |
177 ost << ToStringIfSet("delay_agnostic_aec", delay_agnostic_aec); | 177 ost << ToStringIfSet("delay_agnostic_aec", delay_agnostic_aec); |
178 ost << ToStringIfSet("experimental_ns", experimental_ns); | 178 ost << ToStringIfSet("experimental_ns", experimental_ns); |
179 ost << ToStringIfSet("aec_dump", aec_dump); | 179 ost << ToStringIfSet("aec_dump", aec_dump); |
180 ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov); | 180 ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov); |
181 ost << ToStringIfSet("tx_agc_digital_compression_gain", | 181 ost << ToStringIfSet("tx_agc_digital_compression_gain", |
182 tx_agc_digital_compression_gain); | 182 tx_agc_digital_compression_gain); |
183 ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter); | 183 ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter); |
184 ost << ToStringIfSet("recording_sample_rate", recording_sample_rate); | 184 ost << ToStringIfSet("recording_sample_rate", recording_sample_rate); |
185 ost << ToStringIfSet("playout_sample_rate", playout_sample_rate); | 185 ost << ToStringIfSet("playout_sample_rate", playout_sample_rate); |
186 ost << ToStringIfSet("dscp", dscp); | |
187 ost << ToStringIfSet("combined_audio_video_bwe", combined_audio_video_bwe); | 186 ost << ToStringIfSet("combined_audio_video_bwe", combined_audio_video_bwe); |
188 ost << "}"; | 187 ost << "}"; |
189 return ost.str(); | 188 return ost.str(); |
190 } | 189 } |
191 | 190 |
192 // Audio processing that attempts to filter away the output signal from | 191 // Audio processing that attempts to filter away the output signal from |
193 // later inbound pickup. | 192 // later inbound pickup. |
194 rtc::Optional<bool> echo_cancellation; | 193 rtc::Optional<bool> echo_cancellation; |
195 // Audio processing to adjust the sensitivity of the local mic dynamically. | 194 // Audio processing to adjust the sensitivity of the local mic dynamically. |
196 rtc::Optional<bool> auto_gain_control; | 195 rtc::Optional<bool> auto_gain_control; |
(...skipping 16 matching lines...) Expand all Loading... | |
213 rtc::Optional<bool> extended_filter_aec; | 212 rtc::Optional<bool> extended_filter_aec; |
214 rtc::Optional<bool> delay_agnostic_aec; | 213 rtc::Optional<bool> delay_agnostic_aec; |
215 rtc::Optional<bool> experimental_ns; | 214 rtc::Optional<bool> experimental_ns; |
216 rtc::Optional<bool> aec_dump; | 215 rtc::Optional<bool> aec_dump; |
217 // Note that tx_agc_* only applies to non-experimental AGC. | 216 // Note that tx_agc_* only applies to non-experimental AGC. |
218 rtc::Optional<uint16_t> tx_agc_target_dbov; | 217 rtc::Optional<uint16_t> tx_agc_target_dbov; |
219 rtc::Optional<uint16_t> tx_agc_digital_compression_gain; | 218 rtc::Optional<uint16_t> tx_agc_digital_compression_gain; |
220 rtc::Optional<bool> tx_agc_limiter; | 219 rtc::Optional<bool> tx_agc_limiter; |
221 rtc::Optional<uint32_t> recording_sample_rate; | 220 rtc::Optional<uint32_t> recording_sample_rate; |
222 rtc::Optional<uint32_t> playout_sample_rate; | 221 rtc::Optional<uint32_t> playout_sample_rate; |
223 // Set DSCP value for packet sent from audio channel. | |
224 rtc::Optional<bool> dscp; | |
225 // Enable combined audio+bandwidth BWE. | 222 // Enable combined audio+bandwidth BWE. |
226 rtc::Optional<bool> combined_audio_video_bwe; | 223 rtc::Optional<bool> combined_audio_video_bwe; |
227 | 224 |
228 private: | 225 private: |
229 template <typename T> | 226 template <typename T> |
230 static void SetFrom(rtc::Optional<T>* s, const rtc::Optional<T>& o) { | 227 static void SetFrom(rtc::Optional<T>* s, const rtc::Optional<T>& o) { |
231 if (o) { | 228 if (o) { |
232 *s = o; | 229 *s = o; |
233 } | 230 } |
234 } | 231 } |
235 }; | 232 }; |
236 | 233 |
237 // Options that can be applied to a VideoMediaChannel or a VideoMediaEngine. | 234 // Options that can be applied to a VideoMediaChannel or a VideoMediaEngine. |
238 // Used to be flags, but that makes it hard to selectively apply options. | 235 // Used to be flags, but that makes it hard to selectively apply options. |
239 // We are moving all of the setting of options to structs like this, | 236 // We are moving all of the setting of options to structs like this, |
240 // but some things currently still use flags. | 237 // but some things currently still use flags. |
241 struct VideoOptions { | 238 struct VideoOptions { |
242 void SetAll(const VideoOptions& change) { | 239 void SetAll(const VideoOptions& change) { |
243 SetFrom(&video_noise_reduction, change.video_noise_reduction); | 240 SetFrom(&video_noise_reduction, change.video_noise_reduction); |
244 SetFrom(&cpu_overuse_detection, change.cpu_overuse_detection); | |
245 SetFrom(&conference_mode, change.conference_mode); | 241 SetFrom(&conference_mode, change.conference_mode); |
246 SetFrom(&dscp, change.dscp); | |
247 SetFrom(&suspend_below_min_bitrate, change.suspend_below_min_bitrate); | 242 SetFrom(&suspend_below_min_bitrate, change.suspend_below_min_bitrate); |
248 SetFrom(&screencast_min_bitrate_kbps, change.screencast_min_bitrate_kbps); | 243 SetFrom(&screencast_min_bitrate_kbps, change.screencast_min_bitrate_kbps); |
249 SetFrom(&disable_prerenderer_smoothing, | |
250 change.disable_prerenderer_smoothing); | |
251 } | 244 } |
252 | 245 |
253 bool operator==(const VideoOptions& o) const { | 246 bool operator==(const VideoOptions& o) const { |
254 return video_noise_reduction == o.video_noise_reduction && | 247 return video_noise_reduction == o.video_noise_reduction && |
255 cpu_overuse_detection == o.cpu_overuse_detection && | |
256 conference_mode == o.conference_mode && | 248 conference_mode == o.conference_mode && |
257 dscp == o.dscp && | |
258 suspend_below_min_bitrate == o.suspend_below_min_bitrate && | 249 suspend_below_min_bitrate == o.suspend_below_min_bitrate && |
259 screencast_min_bitrate_kbps == o.screencast_min_bitrate_kbps && | 250 screencast_min_bitrate_kbps == o.screencast_min_bitrate_kbps; |
260 disable_prerenderer_smoothing == o.disable_prerenderer_smoothing; | |
261 } | 251 } |
262 | 252 |
263 std::string ToString() const { | 253 std::string ToString() const { |
264 std::ostringstream ost; | 254 std::ostringstream ost; |
265 ost << "VideoOptions {"; | 255 ost << "VideoOptions {"; |
266 ost << ToStringIfSet("noise reduction", video_noise_reduction); | 256 ost << ToStringIfSet("noise reduction", video_noise_reduction); |
267 ost << ToStringIfSet("cpu overuse detection", cpu_overuse_detection); | |
268 ost << ToStringIfSet("conference mode", conference_mode); | 257 ost << ToStringIfSet("conference mode", conference_mode); |
269 ost << ToStringIfSet("dscp", dscp); | |
270 ost << ToStringIfSet("suspend below min bitrate", | 258 ost << ToStringIfSet("suspend below min bitrate", |
271 suspend_below_min_bitrate); | 259 suspend_below_min_bitrate); |
272 ost << ToStringIfSet("screencast min bitrate kbps", | 260 ost << ToStringIfSet("screencast min bitrate kbps", |
273 screencast_min_bitrate_kbps); | 261 screencast_min_bitrate_kbps); |
274 ost << "}"; | 262 ost << "}"; |
275 return ost.str(); | 263 return ost.str(); |
276 } | 264 } |
277 | 265 |
278 // Enable denoising? This flag comes from the getUserMedia | 266 // Enable denoising? This flag comes from the getUserMedia |
279 // constraint 'googNoiseReduction', and WebRtcVideoEngine2 passes it | 267 // constraint 'googNoiseReduction', and WebRtcVideoEngine2 passes it |
280 // on to the codec options. Disabled by default. | 268 // on to the codec options. Disabled by default. |
281 rtc::Optional<bool> video_noise_reduction; | 269 rtc::Optional<bool> video_noise_reduction; |
282 // Enable WebRTC Cpu Overuse Detection. This flag comes from the | |
283 // PeerConnection constraint 'googCpuOveruseDetection' and is | |
284 // checked in WebRtcVideoChannel2::OnLoadUpdate, where it's passed | |
285 // to VideoCapturer::video_adapter()->OnCpuResolutionRequest. | |
286 rtc::Optional<bool> cpu_overuse_detection; | |
287 // Use conference mode? This flag comes from the remote | 270 // Use conference mode? This flag comes from the remote |
288 // description's SDP line 'a=x-google-flag:conference', copied over | 271 // description's SDP line 'a=x-google-flag:conference', copied over |
289 // by VideoChannel::SetRemoteContent_w, and ultimately used by | 272 // by VideoChannel::SetRemoteContent_w, and ultimately used by |
290 // conference mode screencast logic in | 273 // conference mode screencast logic in |
291 // WebRtcVideoChannel2::WebRtcVideoSendStream::CreateVideoEncoderConfig. | 274 // WebRtcVideoChannel2::WebRtcVideoSendStream::CreateVideoEncoderConfig. |
292 // The special screencast behaviour is disabled by default. | 275 // The special screencast behaviour is disabled by default. |
293 rtc::Optional<bool> conference_mode; | 276 rtc::Optional<bool> conference_mode; |
294 // Set DSCP value for packet sent from video channel. This flag | |
295 // comes from the PeerConnection constraint 'googDscp' and, | |
296 // WebRtcVideoChannel2::SetOptions checks it before calling | |
297 // MediaChannel::SetDscp. If enabled, rtc::DSCP_AF41 is used. If | |
298 // disabled, which is the default, rtc::DSCP_DEFAULT is used. | |
299 rtc::Optional<bool> dscp; | |
300 // Enable WebRTC suspension of video. No video frames will be sent | 277 // Enable WebRTC suspension of video. No video frames will be sent |
301 // when the bitrate is below the configured minimum bitrate. This | 278 // when the bitrate is below the configured minimum bitrate. This |
302 // flag comes from the PeerConnection constraint | 279 // flag comes from the PeerConnection constraint |
303 // 'googSuspendBelowMinBitrate', and WebRtcVideoChannel2 copies it | 280 // 'googSuspendBelowMinBitrate', and WebRtcVideoChannel2 copies it |
304 // to VideoSendStream::Config::suspend_below_min_bitrate. | 281 // to VideoSendStream::Config::suspend_below_min_bitrate. |
305 rtc::Optional<bool> suspend_below_min_bitrate; | 282 rtc::Optional<bool> suspend_below_min_bitrate; |
306 // Force screencast to use a minimum bitrate. This flag comes from | 283 // Force screencast to use a minimum bitrate. This flag comes from |
307 // the PeerConnection constraint 'googScreencastMinBitrate'. It is | 284 // the PeerConnection constraint 'googScreencastMinBitrate'. It is |
308 // copied to the encoder config by WebRtcVideoChannel2. | 285 // copied to the encoder config by WebRtcVideoChannel2. |
309 rtc::Optional<int> screencast_min_bitrate_kbps; | 286 rtc::Optional<int> screencast_min_bitrate_kbps; |
310 // Set to true if the renderer has an algorithm of frame selection. | |
311 // If the value is true, then WebRTC will hand over a frame as soon as | |
312 // possible without delay, and rendering smoothness is completely the duty | |
313 // of the renderer; | |
314 // If the value is false, then WebRTC is responsible to delay frame release | |
315 // in order to increase rendering smoothness. | |
316 // | |
317 // This flag comes from PeerConnection's RtcConfiguration, but is | |
318 // currently only set by the command line flag | |
319 // 'disable-rtc-smoothness-algorithm'. | |
320 // WebRtcVideoChannel2::AddRecvStream copies it to the created | |
321 // WebRtcVideoReceiveStream, where it is returned by the | |
322 // SmoothsRenderedFrames method. This method is used by the | |
323 // VideoReceiveStream, where the value is passed on to the | |
324 // IncomingVideoStream constructor. | |
325 rtc::Optional<bool> disable_prerenderer_smoothing; | |
326 | 287 |
327 private: | 288 private: |
328 template <typename T> | 289 template <typename T> |
329 static void SetFrom(rtc::Optional<T>* s, const rtc::Optional<T>& o) { | 290 static void SetFrom(rtc::Optional<T>* s, const rtc::Optional<T>& o) { |
330 if (o) { | 291 if (o) { |
331 *s = o; | 292 *s = o; |
332 } | 293 } |
333 } | 294 } |
334 }; | 295 }; |
335 | 296 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
378 enum SocketType { ST_RTP, ST_RTCP }; | 339 enum SocketType { ST_RTP, ST_RTCP }; |
379 virtual bool SendPacket(rtc::Buffer* packet, | 340 virtual bool SendPacket(rtc::Buffer* packet, |
380 const rtc::PacketOptions& options) = 0; | 341 const rtc::PacketOptions& options) = 0; |
381 virtual bool SendRtcp(rtc::Buffer* packet, | 342 virtual bool SendRtcp(rtc::Buffer* packet, |
382 const rtc::PacketOptions& options) = 0; | 343 const rtc::PacketOptions& options) = 0; |
383 virtual int SetOption(SocketType type, rtc::Socket::Option opt, | 344 virtual int SetOption(SocketType type, rtc::Socket::Option opt, |
384 int option) = 0; | 345 int option) = 0; |
385 virtual ~NetworkInterface() {} | 346 virtual ~NetworkInterface() {} |
386 }; | 347 }; |
387 | 348 |
388 MediaChannel() : network_interface_(NULL) {} | 349 MediaChannel(const webrtc::MediaConfig& config) |
350 : network_interface_(NULL) { | |
351 enable_dscp_ = config.enable_dscp; | |
352 } | |
353 MediaChannel() : enable_dscp_(false), network_interface_(NULL) {} | |
389 virtual ~MediaChannel() {} | 354 virtual ~MediaChannel() {} |
390 | 355 |
391 // Sets the abstract interface class for sending RTP/RTCP data. | 356 // Sets the abstract interface class for sending RTP/RTCP data. |
392 virtual void SetInterface(NetworkInterface *iface) { | 357 virtual void SetInterface(NetworkInterface *iface) { |
393 rtc::CritScope cs(&network_interface_crit_); | 358 rtc::CritScope cs(&network_interface_crit_); |
394 network_interface_ = iface; | 359 network_interface_ = iface; |
360 SetDscp(enable_dscp_ ? MediaTypeDscpValue() : rtc::DSCP_DEFAULT); | |
pthatcher1
2016/02/05 17:11:30
Can you call this something like preferred_dscp()
nisse-webrtc
2016/02/08 09:02:32
Sure. But for consistency, shouldn't the method na
pbos-webrtc
2016/02/08 10:38:48
https://google.github.io/styleguide/cppguide.html#
nisse-webrtc
2016/02/08 12:22:30
Ok. I used CamelCase for now, but I can change it
| |
395 } | 361 } |
396 | 362 virtual rtc::DiffServCodePoint MediaTypeDscpValue() const { |
363 return rtc::DSCP_DEFAULT; | |
364 } | |
397 // Called when a RTP packet is received. | 365 // Called when a RTP packet is received. |
398 virtual void OnPacketReceived(rtc::Buffer* packet, | 366 virtual void OnPacketReceived(rtc::Buffer* packet, |
399 const rtc::PacketTime& packet_time) = 0; | 367 const rtc::PacketTime& packet_time) = 0; |
400 // Called when a RTCP packet is received. | 368 // Called when a RTCP packet is received. |
401 virtual void OnRtcpReceived(rtc::Buffer* packet, | 369 virtual void OnRtcpReceived(rtc::Buffer* packet, |
402 const rtc::PacketTime& packet_time) = 0; | 370 const rtc::PacketTime& packet_time) = 0; |
403 // Called when the socket's ability to send has changed. | 371 // Called when the socket's ability to send has changed. |
404 virtual void OnReadyToSend(bool ready) = 0; | 372 virtual void OnReadyToSend(bool ready) = 0; |
405 // Creates a new outgoing media stream with SSRCs and CNAME as described | 373 // Creates a new outgoing media stream with SSRCs and CNAME as described |
406 // by sp. | 374 // by sp. |
(...skipping 27 matching lines...) Expand all Loading... | |
434 int SetOption(NetworkInterface::SocketType type, | 402 int SetOption(NetworkInterface::SocketType type, |
435 rtc::Socket::Option opt, | 403 rtc::Socket::Option opt, |
436 int option) { | 404 int option) { |
437 rtc::CritScope cs(&network_interface_crit_); | 405 rtc::CritScope cs(&network_interface_crit_); |
438 if (!network_interface_) | 406 if (!network_interface_) |
439 return -1; | 407 return -1; |
440 | 408 |
441 return network_interface_->SetOption(type, opt, option); | 409 return network_interface_->SetOption(type, opt, option); |
442 } | 410 } |
443 | 411 |
444 protected: | 412 private: |
445 // This method sets DSCP |value| on both RTP and RTCP channels. | 413 // This method sets DSCP |value| on both RTP and RTCP channels. |
446 int SetDscp(rtc::DiffServCodePoint value) { | 414 int SetDscp(rtc::DiffServCodePoint value) { |
447 int ret; | 415 int ret; |
448 ret = SetOption(NetworkInterface::ST_RTP, | 416 ret = SetOption(NetworkInterface::ST_RTP, |
449 rtc::Socket::OPT_DSCP, | 417 rtc::Socket::OPT_DSCP, |
450 value); | 418 value); |
451 if (ret == 0) { | 419 if (ret == 0) { |
452 ret = SetOption(NetworkInterface::ST_RTCP, | 420 ret = SetOption(NetworkInterface::ST_RTCP, |
453 rtc::Socket::OPT_DSCP, | 421 rtc::Socket::OPT_DSCP, |
454 value); | 422 value); |
455 } | 423 } |
456 return ret; | 424 return ret; |
457 } | 425 } |
458 | 426 |
459 private: | 427 private: |
460 bool DoSendPacket(rtc::Buffer* packet, | 428 bool DoSendPacket(rtc::Buffer* packet, |
461 bool rtcp, | 429 bool rtcp, |
462 const rtc::PacketOptions& options) { | 430 const rtc::PacketOptions& options) { |
463 rtc::CritScope cs(&network_interface_crit_); | 431 rtc::CritScope cs(&network_interface_crit_); |
464 if (!network_interface_) | 432 if (!network_interface_) |
465 return false; | 433 return false; |
466 | 434 |
467 return (!rtcp) ? network_interface_->SendPacket(packet, options) | 435 return (!rtcp) ? network_interface_->SendPacket(packet, options) |
468 : network_interface_->SendRtcp(packet, options); | 436 : network_interface_->SendRtcp(packet, options); |
469 } | 437 } |
470 | 438 |
439 bool enable_dscp_; | |
471 // |network_interface_| can be accessed from the worker_thread and | 440 // |network_interface_| can be accessed from the worker_thread and |
472 // from any MediaEngine threads. This critical section is to protect accessing | 441 // from any MediaEngine threads. This critical section is to protect accessing |
473 // of network_interface_ object. | 442 // of network_interface_ object. |
474 rtc::CriticalSection network_interface_crit_; | 443 rtc::CriticalSection network_interface_crit_; |
475 NetworkInterface* network_interface_; | 444 NetworkInterface* network_interface_; |
476 }; | 445 }; |
477 | 446 |
478 enum SendFlags { | 447 enum SendFlags { |
479 SEND_NOTHING, | 448 SEND_NOTHING, |
480 SEND_MICROPHONE | 449 SEND_MICROPHONE |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
914 ERROR_PLAY_DEVICE_OPEN_FAILED = 200, // Could not open playout. | 883 ERROR_PLAY_DEVICE_OPEN_FAILED = 200, // Could not open playout. |
915 ERROR_PLAY_DEVICE_MUTED, // Playout muted by OS. | 884 ERROR_PLAY_DEVICE_MUTED, // Playout muted by OS. |
916 ERROR_PLAY_DEVICE_REMOVED, // Playout removed while active. | 885 ERROR_PLAY_DEVICE_REMOVED, // Playout removed while active. |
917 ERROR_PLAY_RUNTIME_ERROR, // Errors in voice processing. | 886 ERROR_PLAY_RUNTIME_ERROR, // Errors in voice processing. |
918 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure. | 887 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure. |
919 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 888 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
920 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. | 889 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. |
921 }; | 890 }; |
922 | 891 |
923 VoiceMediaChannel() {} | 892 VoiceMediaChannel() {} |
893 VoiceMediaChannel(const webrtc::MediaConfig& config) : MediaChannel(config) {} | |
924 virtual ~VoiceMediaChannel() {} | 894 virtual ~VoiceMediaChannel() {} |
925 virtual bool SetSendParameters(const AudioSendParameters& params) = 0; | 895 virtual bool SetSendParameters(const AudioSendParameters& params) = 0; |
926 virtual bool SetRecvParameters(const AudioRecvParameters& params) = 0; | 896 virtual bool SetRecvParameters(const AudioRecvParameters& params) = 0; |
927 // Starts or stops playout of received audio. | 897 // Starts or stops playout of received audio. |
928 virtual bool SetPlayout(bool playout) = 0; | 898 virtual bool SetPlayout(bool playout) = 0; |
929 // Starts or stops sending (and potentially capture) of local audio. | 899 // Starts or stops sending (and potentially capture) of local audio. |
930 virtual bool SetSend(SendFlags flag) = 0; | 900 virtual bool SetSend(SendFlags flag) = 0; |
931 // Configure stream for sending. | 901 // Configure stream for sending. |
932 virtual bool SetAudioSend(uint32_t ssrc, | 902 virtual bool SetAudioSend(uint32_t ssrc, |
933 bool enable, | 903 bool enable, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
977 ERROR_REC_DEVICE_REMOVED, // Device is removed. | 947 ERROR_REC_DEVICE_REMOVED, // Device is removed. |
978 ERROR_REC_SRTP_ERROR, // Generic sender SRTP failure. | 948 ERROR_REC_SRTP_ERROR, // Generic sender SRTP failure. |
979 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 949 ERROR_REC_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
980 ERROR_REC_CPU_MAX_CANT_DOWNGRADE, // Can't downgrade capture anymore. | 950 ERROR_REC_CPU_MAX_CANT_DOWNGRADE, // Can't downgrade capture anymore. |
981 ERROR_PLAY_SRTP_ERROR = 200, // Generic receiver SRTP failure. | 951 ERROR_PLAY_SRTP_ERROR = 200, // Generic receiver SRTP failure. |
982 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. | 952 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. |
983 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. | 953 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. |
984 }; | 954 }; |
985 | 955 |
986 VideoMediaChannel() {} | 956 VideoMediaChannel() {} |
957 VideoMediaChannel(const webrtc::MediaConfig& config) : MediaChannel(config) {} | |
987 virtual ~VideoMediaChannel() {} | 958 virtual ~VideoMediaChannel() {} |
988 | 959 |
989 virtual bool SetSendParameters(const VideoSendParameters& params) = 0; | 960 virtual bool SetSendParameters(const VideoSendParameters& params) = 0; |
990 virtual bool SetRecvParameters(const VideoRecvParameters& params) = 0; | 961 virtual bool SetRecvParameters(const VideoRecvParameters& params) = 0; |
991 // Gets the currently set codecs/payload types to be used for outgoing media. | 962 // Gets the currently set codecs/payload types to be used for outgoing media. |
992 virtual bool GetSendCodec(VideoCodec* send_codec) = 0; | 963 virtual bool GetSendCodec(VideoCodec* send_codec) = 0; |
993 // Starts or stops transmission (and potentially capture) of local video. | 964 // Starts or stops transmission (and potentially capture) of local video. |
994 virtual bool SetSend(bool send) = 0; | 965 virtual bool SetSend(bool send) = 0; |
995 // Configure stream for sending. | 966 // Configure stream for sending. |
996 virtual bool SetVideoSend(uint32_t ssrc, | 967 virtual bool SetVideoSend(uint32_t ssrc, |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1128 // Signal when the media channel is ready to send the stream. Arguments are: | 1099 // Signal when the media channel is ready to send the stream. Arguments are: |
1129 // writable(bool) | 1100 // writable(bool) |
1130 sigslot::signal1<bool> SignalReadyToSend; | 1101 sigslot::signal1<bool> SignalReadyToSend; |
1131 // Signal for notifying that the remote side has closed the DataChannel. | 1102 // Signal for notifying that the remote side has closed the DataChannel. |
1132 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; | 1103 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; |
1133 }; | 1104 }; |
1134 | 1105 |
1135 } // namespace cricket | 1106 } // namespace cricket |
1136 | 1107 |
1137 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ | 1108 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ |
OLD | NEW |