| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 // Structures | 50 // Structures |
| 51 void* resampler; | 51 void* resampler; |
| 52 | 52 |
| 53 int skewFrCtr; | 53 int skewFrCtr; |
| 54 int resample; // if the skew is small enough we don't resample | 54 int resample; // if the skew is small enough we don't resample |
| 55 int highSkewCtr; | 55 int highSkewCtr; |
| 56 float skew; | 56 float skew; |
| 57 | 57 |
| 58 RingBuffer* far_pre_buf; // Time domain far-end pre-buffer. | 58 RingBuffer* far_pre_buf; // Time domain far-end pre-buffer. |
| 59 | 59 |
| 60 int lastError; | |
| 61 | |
| 62 int farend_started; | 60 int farend_started; |
| 63 | 61 |
| 64 AecCore* aec; | 62 AecCore* aec; |
| 65 } Aec; | 63 } Aec; |
| 66 | 64 |
| 67 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_INTERNAL_H_ | 65 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_INTERNAL_H_ |
| OLD | NEW |