OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1335 bool VoiceChannel::Init() { | 1335 bool VoiceChannel::Init() { |
1336 if (!BaseChannel::Init()) { | 1336 if (!BaseChannel::Init()) { |
1337 return false; | 1337 return false; |
1338 } | 1338 } |
1339 return true; | 1339 return true; |
1340 } | 1340 } |
1341 | 1341 |
1342 bool VoiceChannel::SetAudioSend(uint32_t ssrc, | 1342 bool VoiceChannel::SetAudioSend(uint32_t ssrc, |
1343 bool enable, | 1343 bool enable, |
1344 const AudioOptions* options, | 1344 const AudioOptions* options, |
1345 AudioRenderer* renderer) { | 1345 AudioSource* source) { |
1346 return InvokeOnWorker(Bind(&VoiceMediaChannel::SetAudioSend, media_channel(), | 1346 return InvokeOnWorker(Bind(&VoiceMediaChannel::SetAudioSend, media_channel(), |
1347 ssrc, enable, options, renderer)); | 1347 ssrc, enable, options, source)); |
1348 } | 1348 } |
1349 | 1349 |
1350 // TODO(juberti): Handle early media the right way. We should get an explicit | 1350 // TODO(juberti): Handle early media the right way. We should get an explicit |
1351 // ringing message telling us to start playing local ringback, which we cancel | 1351 // ringing message telling us to start playing local ringback, which we cancel |
1352 // if any early media actually arrives. For now, we do the opposite, which is | 1352 // if any early media actually arrives. For now, we do the opposite, which is |
1353 // to wait 1 second for early media, and start playing local ringback if none | 1353 // to wait 1 second for early media, and start playing local ringback if none |
1354 // arrives. | 1354 // arrives. |
1355 void VoiceChannel::SetEarlyMedia(bool enable) { | 1355 void VoiceChannel::SetEarlyMedia(bool enable) { |
1356 if (enable) { | 1356 if (enable) { |
1357 // Start the early media timeout | 1357 // Start the early media timeout |
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2248 return (data_channel_type_ == DCT_RTP) && BaseChannel::ShouldSetupDtlsSrtp(); | 2248 return (data_channel_type_ == DCT_RTP) && BaseChannel::ShouldSetupDtlsSrtp(); |
2249 } | 2249 } |
2250 | 2250 |
2251 void DataChannel::OnStreamClosedRemotely(uint32_t sid) { | 2251 void DataChannel::OnStreamClosedRemotely(uint32_t sid) { |
2252 rtc::TypedMessageData<uint32_t>* message = | 2252 rtc::TypedMessageData<uint32_t>* message = |
2253 new rtc::TypedMessageData<uint32_t>(sid); | 2253 new rtc::TypedMessageData<uint32_t>(sid); |
2254 signaling_thread()->Post(this, MSG_STREAMCLOSEDREMOTELY, message); | 2254 signaling_thread()->Post(this, MSG_STREAMCLOSEDREMOTELY, message); |
2255 } | 2255 } |
2256 | 2256 |
2257 } // namespace cricket | 2257 } // namespace cricket |
OLD | NEW |