| 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 |
| 11 #include "webrtc/modules/audio_processing/gain_control_impl.h" | 11 #include "webrtc/modules/audio_processing/gain_control_impl.h" |
| 12 | 12 |
| 13 #include <assert.h> | 13 #include <assert.h> |
| 14 | 14 |
| 15 #include "webrtc/modules/audio_processing/audio_buffer.h" | 15 #include "webrtc/modules/audio_processing/audio_buffer.h" |
| 16 #include "webrtc/modules/audio_processing/agc/legacy/gain_control.h" | 16 #include "webrtc/modules/audio_processing/agc/legacy/gain_control.h" |
| 17 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" | 17 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 | 20 |
| 21 typedef void Handle; | 21 typedef void Handle; |
| 22 | 22 |
| 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; |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 return apm_->num_output_channels(); | 334 return apm_->num_output_channels(); |
| 335 } | 335 } |
| 336 | 336 |
| 337 int GainControlImpl::GetHandleError(void* handle) const { | 337 int GainControlImpl::GetHandleError(void* handle) const { |
| 338 // The AGC has no get_error() function. | 338 // The AGC has no get_error() function. |
| 339 // (Despite listing errors in its interface...) | 339 // (Despite listing errors in its interface...) |
| 340 assert(handle != NULL); | 340 assert(handle != NULL); |
| 341 return apm_->kUnspecifiedError; | 341 return apm_->kUnspecifiedError; |
| 342 } | 342 } |
| 343 } // namespace webrtc | 343 } // namespace webrtc |
| OLD | NEW |