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

Side by Side Diff: webrtc/modules/audio_processing/vad/vad_circular_buffer.cc

Issue 2320053003: webrtc/modules/audio_processing: Use RTC_DCHECK() instead of assert() (Closed)
Patch Set: rebase Created 4 years, 3 months 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
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/vad/vad_audio_proc.cc ('k') | webrtc/modules/audio_processing/voice_detection_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698