Chromium Code Reviews| Index: webrtc/modules/audio_processing/aec/aec_core.h |
| diff --git a/webrtc/modules/audio_processing/aec/aec_core.h b/webrtc/modules/audio_processing/aec/aec_core.h |
| index 71f02d6a3e426dfd80b886f24b6e5f0d9ba8ba86..ee491da851c0959157847d5391c7f6aabcbac810 100644 |
| --- a/webrtc/modules/audio_processing/aec/aec_core.h |
| +++ b/webrtc/modules/audio_processing/aec/aec_core.h |
| @@ -47,8 +47,8 @@ typedef struct Stats { |
| float sum; |
| float hisum; |
| float himean; |
| - int counter; |
| - int hicounter; |
| + size_t counter; |
| + size_t hicounter; |
|
tlegrand-webrtc
2016/04/25 13:09:57
None of the names are good, since "counter" is too
|
| } Stats; |
| typedef struct AecCore AecCore; |