| 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/vad/vad_circular_buffer.h" | 11 #include "webrtc/modules/audio_processing/vad/vad_circular_buffer.h" |
| 12 | 12 |
| 13 #include <assert.h> | |
| 14 #include <stdlib.h> | 13 #include <stdlib.h> |
| 15 | 14 |
| 16 namespace webrtc { | 15 namespace webrtc { |
| 17 | 16 |
| 18 VadCircularBuffer::VadCircularBuffer(int buffer_size) | 17 VadCircularBuffer::VadCircularBuffer(int buffer_size) |
| 19 : buffer_(new double[buffer_size]), | 18 : buffer_(new double[buffer_size]), |
| 20 is_full_(false), | 19 is_full_(false), |
| 21 index_(0), | 20 index_(0), |
| 22 buffer_size_(buffer_size), | 21 buffer_size_(buffer_size), |
| 23 sum_(0) { | 22 sum_(0) { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 } | 128 } |
| 130 for (; index > index_1; index--) { | 129 for (; index > index_1; index--) { |
| 131 if (Set(index, 0.0) < 0) | 130 if (Set(index, 0.0) < 0) |
| 132 return -1; | 131 return -1; |
| 133 } | 132 } |
| 134 } | 133 } |
| 135 return 0; | 134 return 0; |
| 136 } | 135 } |
| 137 | 136 |
| 138 } // namespace webrtc | 137 } // namespace webrtc |
| OLD | NEW |