| 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/echo_cancellation_impl.h" | 11 #include "webrtc/modules/audio_processing/echo_cancellation_impl.h" |
| 12 | 12 |
| 13 #include <assert.h> | |
| 14 #include <string.h> | 13 #include <string.h> |
| 15 | 14 |
| 15 #include "webrtc/base/checks.h" |
| 16 #include "webrtc/modules/audio_processing/aec/aec_core.h" | 16 #include "webrtc/modules/audio_processing/aec/aec_core.h" |
| 17 #include "webrtc/modules/audio_processing/aec/echo_cancellation.h" | 17 #include "webrtc/modules/audio_processing/aec/echo_cancellation.h" |
| 18 #include "webrtc/modules/audio_processing/audio_buffer.h" | 18 #include "webrtc/modules/audio_processing/audio_buffer.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 namespace { | 22 namespace { |
| 23 int16_t MapSetting(EchoCancellation::SuppressionLevel level) { | 23 int16_t MapSetting(EchoCancellation::SuppressionLevel level) { |
| 24 switch (level) { | 24 switch (level) { |
| 25 case EchoCancellation::kLowSuppression: | 25 case EchoCancellation::kLowSuppression: |
| 26 return kAecNlpConservative; | 26 return kAecNlpConservative; |
| 27 case EchoCancellation::kModerateSuppression: | 27 case EchoCancellation::kModerateSuppression: |
| 28 return kAecNlpModerate; | 28 return kAecNlpModerate; |
| 29 case EchoCancellation::kHighSuppression: | 29 case EchoCancellation::kHighSuppression: |
| 30 return kAecNlpAggressive; | 30 return kAecNlpAggressive; |
| 31 } | 31 } |
| 32 assert(false); | 32 RTC_NOTREACHED(); |
| 33 return -1; | 33 return -1; |
| 34 } | 34 } |
| 35 | 35 |
| 36 AudioProcessing::Error MapError(int err) { | 36 AudioProcessing::Error MapError(int err) { |
| 37 switch (err) { | 37 switch (err) { |
| 38 case AEC_UNSUPPORTED_FUNCTION_ERROR: | 38 case AEC_UNSUPPORTED_FUNCTION_ERROR: |
| 39 return AudioProcessing::kUnsupportedFunctionError; | 39 return AudioProcessing::kUnsupportedFunctionError; |
| 40 case AEC_BAD_PARAMETER_ERROR: | 40 case AEC_BAD_PARAMETER_ERROR: |
| 41 return AudioProcessing::kBadParameterError; | 41 return AudioProcessing::kBadParameterError; |
| 42 case AEC_BAD_PARAMETER_WARNING: | 42 case AEC_BAD_PARAMETER_WARNING: |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 return error; | 572 return error; |
| 573 } | 573 } |
| 574 | 574 |
| 575 size_t EchoCancellationImpl::NumCancellersRequired() const { | 575 size_t EchoCancellationImpl::NumCancellersRequired() const { |
| 576 RTC_DCHECK(stream_properties_); | 576 RTC_DCHECK(stream_properties_); |
| 577 return stream_properties_->num_output_channels * | 577 return stream_properties_->num_output_channels * |
| 578 stream_properties_->num_reverse_channels; | 578 stream_properties_->num_reverse_channels; |
| 579 } | 579 } |
| 580 | 580 |
| 581 } // namespace webrtc | 581 } // namespace webrtc |
| OLD | NEW |