| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 12 matching lines...) Expand all Loading... |
| 23 namespace { | 23 namespace { |
| 24 int16_t MapSetting(GainControl::Mode mode) { | 24 int16_t MapSetting(GainControl::Mode mode) { |
| 25 switch (mode) { | 25 switch (mode) { |
| 26 case GainControl::kAdaptiveAnalog: | 26 case GainControl::kAdaptiveAnalog: |
| 27 return kAgcModeAdaptiveAnalog; | 27 return kAgcModeAdaptiveAnalog; |
| 28 case GainControl::kAdaptiveDigital: | 28 case GainControl::kAdaptiveDigital: |
| 29 return kAgcModeAdaptiveDigital; | 29 return kAgcModeAdaptiveDigital; |
| 30 case GainControl::kFixedDigital: | 30 case GainControl::kFixedDigital: |
| 31 return kAgcModeFixedDigital; | 31 return kAgcModeFixedDigital; |
| 32 } | 32 } |
| 33 RTC_DCHECK(false); | 33 RTC_NOTREACHED(); |
| 34 return -1; | 34 return -1; |
| 35 } | 35 } |
| 36 | 36 |
| 37 } // namespace | 37 } // namespace |
| 38 | 38 |
| 39 class GainControlImpl::GainController { | 39 class GainControlImpl::GainController { |
| 40 public: | 40 public: |
| 41 explicit GainController() { | 41 explicit GainController() { |
| 42 state_ = WebRtcAgc_Create(); | 42 state_ = WebRtcAgc_Create(); |
| 43 RTC_CHECK(state_); | 43 RTC_CHECK(state_); |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 for (auto& gain_controller : gain_controllers_) { | 430 for (auto& gain_controller : gain_controllers_) { |
| 431 const int handle_error = | 431 const int handle_error = |
| 432 WebRtcAgc_set_config(gain_controller->state(), config); | 432 WebRtcAgc_set_config(gain_controller->state(), config); |
| 433 if (handle_error != AudioProcessing::kNoError) { | 433 if (handle_error != AudioProcessing::kNoError) { |
| 434 error = handle_error; | 434 error = handle_error; |
| 435 } | 435 } |
| 436 } | 436 } |
| 437 return error; | 437 return error; |
| 438 } | 438 } |
| 439 } // namespace webrtc | 439 } // namespace webrtc |
| OLD | NEW |