| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/environment.h" | 7 #include "base/environment.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 WebRtcAudioCapturer::CreateCapturer()); | 112 WebRtcAudioCapturer::CreateCapturer()); |
| 113 | 113 |
| 114 media::AudioHardwareConfig* hardware_config = | 114 media::AudioHardwareConfig* hardware_config = |
| 115 RenderThreadImpl::current()->GetAudioHardwareConfig(); | 115 RenderThreadImpl::current()->GetAudioHardwareConfig(); |
| 116 | 116 |
| 117 // Use native capture sample rate and channel configuration to get some | 117 // Use native capture sample rate and channel configuration to get some |
| 118 // action in this test. | 118 // action in this test. |
| 119 int sample_rate = hardware_config->GetInputSampleRate(); | 119 int sample_rate = hardware_config->GetInputSampleRate(); |
| 120 media::ChannelLayout channel_layout = | 120 media::ChannelLayout channel_layout = |
| 121 hardware_config->GetInputChannelLayout(); | 121 hardware_config->GetInputChannelLayout(); |
| 122 if (!capturer->Initialize(kRenderViewId, channel_layout, sample_rate, 1, | 122 if (!capturer->Initialize(kRenderViewId, channel_layout, sample_rate, 0, 1, |
| 123 media::AudioManagerBase::kDefaultDeviceId)) { | 123 media::AudioManagerBase::kDefaultDeviceId)) { |
| 124 return false; | 124 return false; |
| 125 } | 125 } |
| 126 | 126 |
| 127 // Add the capturer to the WebRtcAudioDeviceImpl. | 127 // Add the capturer to the WebRtcAudioDeviceImpl. |
| 128 webrtc_audio_device->AddAudioCapturer(capturer); | 128 webrtc_audio_device->AddAudioCapturer(capturer); |
| 129 | 129 |
| 130 return true; | 130 return true; |
| 131 } | 131 } |
| 132 | 132 |
| 133 // Create and start a local audio track. Starting the audio track will connect | 133 // Create and start a local audio track. Starting the audio track will connect |
| 134 // the audio track to the capturer and also start the source of the capturer. | 134 // the audio track to the capturer and also start the source of the capturer. |
| 135 // Also, connect the sink to the audio track. | 135 // Also, connect the sink to the audio track. |
| 136 scoped_refptr<WebRtcLocalAudioTrack> | 136 scoped_refptr<WebRtcLocalAudioTrack> |
| 137 CreateAndStartLocalAudioTrack(WebRtcAudioCapturer* capturer, | 137 CreateAndStartLocalAudioTrack(WebRtcAudioCapturer* capturer, |
| 138 WebRtcAudioCapturerSink* sink) { | 138 WebRtcAudioCapturerSink* sink) { |
| 139 scoped_refptr<WebRtcLocalAudioTrack> local_audio_track( | 139 scoped_refptr<WebRtcLocalAudioTrack> local_audio_track( |
| 140 WebRtcLocalAudioTrack::Create(std::string(), capturer, NULL, NULL)); | 140 WebRtcLocalAudioTrack::Create(std::string(), capturer, NULL, NULL, NULL)); |
| 141 local_audio_track->AddSink(sink); | 141 local_audio_track->AddSink(sink); |
| 142 local_audio_track->Start(); | 142 local_audio_track->Start(); |
| 143 return local_audio_track; | 143 return local_audio_track; |
| 144 } | 144 } |
| 145 | 145 |
| 146 class WebRTCMediaProcessImpl : public webrtc::VoEMediaProcess { | 146 class WebRTCMediaProcessImpl : public webrtc::VoEMediaProcess { |
| 147 public: | 147 public: |
| 148 explicit WebRTCMediaProcessImpl(base::WaitableEvent* event) | 148 explicit WebRTCMediaProcessImpl(base::WaitableEvent* event) |
| 149 : event_(event), | 149 : event_(event), |
| 150 channel_id_(-1), | 150 channel_id_(-1), |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 #endif | 985 #endif |
| 986 | 986 |
| 987 TEST_F(MAYBE_WebRTCAudioDeviceTest, | 987 TEST_F(MAYBE_WebRTCAudioDeviceTest, |
| 988 MAYBE_WebRtcLoopbackTimeWithSignalProcessing) { | 988 MAYBE_WebRtcLoopbackTimeWithSignalProcessing) { |
| 989 int latency = RunWebRtcLoopbackTimeTest(audio_manager_.get(), true); | 989 int latency = RunWebRtcLoopbackTimeTest(audio_manager_.get(), true); |
| 990 PrintPerfResultMs("webrtc_loopback_with_signal_processing (100 packets)", | 990 PrintPerfResultMs("webrtc_loopback_with_signal_processing (100 packets)", |
| 991 "t", latency); | 991 "t", latency); |
| 992 } | 992 } |
| 993 | 993 |
| 994 } // namespace content | 994 } // namespace content |
| OLD | NEW |