OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
273 // voe_codec.channels to 2 if "stereo=1" and 1 otherwise. If | 273 // voe_codec.channels to 2 if "stereo=1" and 1 otherwise. If |
274 // the bitrate is not specified, i.e. is <= zero, we set it to the | 274 // the bitrate is not specified, i.e. is <= zero, we set it to the |
275 // appropriate default value for mono or stereo Opus. | 275 // appropriate default value for mono or stereo Opus. |
276 voe_codec->channels = IsCodecFeatureEnabled(codec, kCodecParamStereo) ? 2 : 1; | 276 voe_codec->channels = IsCodecFeatureEnabled(codec, kCodecParamStereo) ? 2 : 1; |
277 voe_codec->rate = GetOpusBitrate(codec, *max_playback_rate); | 277 voe_codec->rate = GetOpusBitrate(codec, *max_playback_rate); |
278 } | 278 } |
279 | 279 |
280 webrtc::AudioState::Config MakeAudioStateConfig(VoEWrapper* voe_wrapper) { | 280 webrtc::AudioState::Config MakeAudioStateConfig(VoEWrapper* voe_wrapper) { |
281 webrtc::AudioState::Config config; | 281 webrtc::AudioState::Config config; |
282 config.voice_engine = voe_wrapper->engine(); | 282 config.voice_engine = voe_wrapper->engine(); |
283 config.audio_mixer = webrtc::AudioMixerImpl::Create(); | 283 if (voe_wrapper->AudioMixer()) { |
the sun
2016/12/07 15:56:08
Send the mixer as an argument to this function ins
GeorgeZ
2016/12/07 18:28:17
Good point
| |
284 config.audio_mixer = voe_wrapper->AudioMixer(); | |
285 } else { | |
286 config.audio_mixer = webrtc::AudioMixerImpl::Create(); | |
287 } | |
284 return config; | 288 return config; |
285 } | 289 } |
286 | 290 |
287 class WebRtcVoiceCodecs final { | 291 class WebRtcVoiceCodecs final { |
288 public: | 292 public: |
289 // TODO(solenberg): Do this filtering once off-line, add a simple AudioCodec | 293 // TODO(solenberg): Do this filtering once off-line, add a simple AudioCodec |
290 // list and add a test which verifies VoE supports the listed codecs. | 294 // list and add a test which verifies VoE supports the listed codecs. |
291 static std::vector<AudioCodec> SupportedSendCodecs() { | 295 static std::vector<AudioCodec> SupportedSendCodecs() { |
292 std::vector<AudioCodec> result; | 296 std::vector<AudioCodec> result; |
293 // Iterate first over our preferred codecs list, so that the results are | 297 // Iterate first over our preferred codecs list, so that the results are |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
533 | 537 |
534 } // namespace { | 538 } // namespace { |
535 | 539 |
536 bool WebRtcVoiceEngine::ToCodecInst(const AudioCodec& in, | 540 bool WebRtcVoiceEngine::ToCodecInst(const AudioCodec& in, |
537 webrtc::CodecInst* out) { | 541 webrtc::CodecInst* out) { |
538 return WebRtcVoiceCodecs::ToCodecInst(in, out); | 542 return WebRtcVoiceCodecs::ToCodecInst(in, out); |
539 } | 543 } |
540 | 544 |
541 WebRtcVoiceEngine::WebRtcVoiceEngine( | 545 WebRtcVoiceEngine::WebRtcVoiceEngine( |
542 webrtc::AudioDeviceModule* adm, | 546 webrtc::AudioDeviceModule* adm, |
543 const rtc::scoped_refptr<webrtc::AudioDecoderFactory>& decoder_factory) | 547 const rtc::scoped_refptr<webrtc::AudioDecoderFactory>& decoder_factory, |
544 : WebRtcVoiceEngine(adm, decoder_factory, new VoEWrapper()) { | 548 rtc::scoped_refptr<webrtc::AudioMixer> audio_mixer) |
549 : WebRtcVoiceEngine(adm, | |
550 decoder_factory, | |
551 audio_mixer, | |
552 new VoEWrapper(audio_mixer)) { | |
545 audio_state_ = webrtc::AudioState::Create(MakeAudioStateConfig(voe())); | 553 audio_state_ = webrtc::AudioState::Create(MakeAudioStateConfig(voe())); |
546 } | 554 } |
547 | 555 |
548 WebRtcVoiceEngine::WebRtcVoiceEngine( | 556 WebRtcVoiceEngine::WebRtcVoiceEngine( |
549 webrtc::AudioDeviceModule* adm, | 557 webrtc::AudioDeviceModule* adm, |
550 const rtc::scoped_refptr<webrtc::AudioDecoderFactory>& decoder_factory, | 558 const rtc::scoped_refptr<webrtc::AudioDecoderFactory>& decoder_factory, |
559 rtc::scoped_refptr<webrtc::AudioMixer> audio_mixer, | |
551 VoEWrapper* voe_wrapper) | 560 VoEWrapper* voe_wrapper) |
552 : adm_(adm), decoder_factory_(decoder_factory), voe_wrapper_(voe_wrapper) { | 561 : adm_(adm), decoder_factory_(decoder_factory), voe_wrapper_(voe_wrapper) { |
553 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 562 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
554 LOG(LS_INFO) << "WebRtcVoiceEngine::WebRtcVoiceEngine"; | 563 LOG(LS_INFO) << "WebRtcVoiceEngine::WebRtcVoiceEngine"; |
555 RTC_DCHECK(voe_wrapper); | 564 RTC_DCHECK(voe_wrapper); |
556 RTC_DCHECK(decoder_factory); | 565 RTC_DCHECK(decoder_factory); |
557 | 566 |
558 signal_thread_checker_.DetachFromThread(); | 567 signal_thread_checker_.DetachFromThread(); |
559 | 568 |
560 // Load our audio codec list. | 569 // Load our audio codec list. |
(...skipping 2077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2638 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 2647 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
2639 const auto it = send_streams_.find(ssrc); | 2648 const auto it = send_streams_.find(ssrc); |
2640 if (it != send_streams_.end()) { | 2649 if (it != send_streams_.end()) { |
2641 return it->second->channel(); | 2650 return it->second->channel(); |
2642 } | 2651 } |
2643 return -1; | 2652 return -1; |
2644 } | 2653 } |
2645 } // namespace cricket | 2654 } // namespace cricket |
2646 | 2655 |
2647 #endif // HAVE_WEBRTC_VOICE | 2656 #endif // HAVE_WEBRTC_VOICE |
OLD | NEW |