| 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 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_VAD_VAD_CIRCULAR_BUFFER_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_VAD_VAD_CIRCULAR_BUFFER_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_VAD_VAD_CIRCULAR_BUFFER_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_VAD_VAD_CIRCULAR_BUFFER_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/scoped_ptr.h" | 14 #include <memory> |
| 15 | 15 |
| 16 namespace webrtc { | 16 namespace webrtc { |
| 17 | 17 |
| 18 // A circular buffer tailored to the need of this project. It stores last | 18 // A circular buffer tailored to the need of this project. It stores last |
| 19 // K samples of the input, and keeps track of the mean of the last samples. | 19 // K samples of the input, and keeps track of the mean of the last samples. |
| 20 // | 20 // |
| 21 // It is used in class "PitchBasedActivity" to keep track of posterior | 21 // It is used in class "PitchBasedActivity" to keep track of posterior |
| 22 // probabilities in the past few seconds. The posterior probabilities are used | 22 // probabilities in the past few seconds. The posterior probabilities are used |
| 23 // to recursively update prior probabilities. | 23 // to recursively update prior probabilities. |
| 24 class VadCircularBuffer { | 24 class VadCircularBuffer { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 51 int Get(int index, double* value) const; | 51 int Get(int index, double* value) const; |
| 52 // Set a given position to |value|. |index| is interpreted as above. | 52 // Set a given position to |value|. |index| is interpreted as above. |
| 53 int Set(int index, double value); | 53 int Set(int index, double value); |
| 54 // Return the number of valid elements in the buffer. | 54 // Return the number of valid elements in the buffer. |
| 55 int BufferLevel(); | 55 int BufferLevel(); |
| 56 | 56 |
| 57 // Convert an index with the interpretation as get() method to the | 57 // Convert an index with the interpretation as get() method to the |
| 58 // corresponding linear index. | 58 // corresponding linear index. |
| 59 int ConvertToLinearIndex(int* index) const; | 59 int ConvertToLinearIndex(int* index) const; |
| 60 | 60 |
| 61 rtc::scoped_ptr<double[]> buffer_; | 61 std::unique_ptr<double[]> buffer_; |
| 62 bool is_full_; | 62 bool is_full_; |
| 63 int index_; | 63 int index_; |
| 64 int buffer_size_; | 64 int buffer_size_; |
| 65 double sum_; | 65 double sum_; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 } // namespace webrtc | 68 } // namespace webrtc |
| 69 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_VAD_VAD_CIRCULAR_BUFFER_H_ | 69 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_VAD_VAD_CIRCULAR_BUFFER_H_ |
| OLD | NEW |