Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: webrtc/modules/audio_processing/aec/echo_cancellation_internal.h

Issue 1404743003: Removed the indirect error message reporting in aec and aecm. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@process_test_no_output_CL
Patch Set: Merge from latest master Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698