| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "content/public/common/content_switches.h" | 7 #include "content/public/common/content_switches.h" |
| 8 #include "content/renderer/media/mock_media_constraint_factory.h" | 8 #include "content/renderer/media/mock_media_constraint_factory.h" |
| 9 #include "content/renderer/media/webrtc/webrtc_local_audio_track_adapter.h" | 9 #include "content/renderer/media/webrtc/webrtc_local_audio_track_adapter.h" |
| 10 #include "content/renderer/media/webrtc_audio_capturer.h" | 10 #include "content/renderer/media/webrtc_audio_capturer.h" |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 switches::kEnableAudioTrackProcessing); | 89 switches::kEnableAudioTrackProcessing); |
| 90 } | 90 } |
| 91 | 91 |
| 92 void VerifyAudioParams(const blink::WebMediaConstraints& constraints, | 92 void VerifyAudioParams(const blink::WebMediaConstraints& constraints, |
| 93 bool need_audio_processing) { | 93 bool need_audio_processing) { |
| 94 capturer_ = WebRtcAudioCapturer::CreateCapturer( | 94 capturer_ = WebRtcAudioCapturer::CreateCapturer( |
| 95 -1, StreamDeviceInfo(MEDIA_DEVICE_AUDIO_CAPTURE, | 95 -1, StreamDeviceInfo(MEDIA_DEVICE_AUDIO_CAPTURE, |
| 96 "", "", params_.sample_rate(), | 96 "", "", params_.sample_rate(), |
| 97 params_.channel_layout(), | 97 params_.channel_layout(), |
| 98 params_.frames_per_buffer()), | 98 params_.frames_per_buffer()), |
| 99 constraints, NULL); | 99 constraints, NULL, NULL); |
| 100 capturer_source_ = new MockCapturerSource(); | 100 capturer_source_ = new MockCapturerSource(); |
| 101 EXPECT_CALL(*capturer_source_.get(), Initialize(_, capturer_.get(), -1)); | 101 EXPECT_CALL(*capturer_source_.get(), Initialize(_, capturer_.get(), -1)); |
| 102 capturer_->SetCapturerSourceForTesting(capturer_source_, params_); | 102 capturer_->SetCapturerSourceForTesting(capturer_source_, params_); |
| 103 | 103 |
| 104 EXPECT_CALL(*capturer_source_.get(), SetAutomaticGainControl(true)); | 104 EXPECT_CALL(*capturer_source_.get(), SetAutomaticGainControl(true)); |
| 105 EXPECT_CALL(*capturer_source_.get(), Start()); | 105 EXPECT_CALL(*capturer_source_.get(), Start()); |
| 106 scoped_refptr<WebRtcLocalAudioTrackAdapter> adapter( | 106 scoped_refptr<WebRtcLocalAudioTrackAdapter> adapter( |
| 107 WebRtcLocalAudioTrackAdapter::Create(std::string(), NULL)); | 107 WebRtcLocalAudioTrackAdapter::Create(std::string(), NULL)); |
| 108 track_.reset(new WebRtcLocalAudioTrack(adapter, capturer_, NULL)); | 108 track_.reset(new WebRtcLocalAudioTrack(adapter, capturer_, NULL)); |
| 109 static_cast<WebRtcLocalAudioSourceProvider*>( | 109 static_cast<WebRtcLocalAudioSourceProvider*>( |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 TEST_F(WebRtcAudioCapturerTest, VerifyAudioParamsWithAudioProcessing) { | 167 TEST_F(WebRtcAudioCapturerTest, VerifyAudioParamsWithAudioProcessing) { |
| 168 EnableAudioTrackProcessing(); | 168 EnableAudioTrackProcessing(); |
| 169 // Turn off the default constraints to verify that the sink will get packets | 169 // Turn off the default constraints to verify that the sink will get packets |
| 170 // with a buffer size smaller than 10ms. | 170 // with a buffer size smaller than 10ms. |
| 171 MockMediaConstraintFactory constraint_factory; | 171 MockMediaConstraintFactory constraint_factory; |
| 172 constraint_factory.DisableDefaultAudioConstraints(); | 172 constraint_factory.DisableDefaultAudioConstraints(); |
| 173 VerifyAudioParams(constraint_factory.CreateWebMediaConstraints(), false); | 173 VerifyAudioParams(constraint_factory.CreateWebMediaConstraints(), false); |
| 174 } | 174 } |
| 175 | 175 |
| 176 } // namespace content | 176 } // namespace content |
| OLD | NEW |