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

Side by Side Diff: webrtc/modules/audio_processing/voice_detection_impl.cc

Issue 1238083005: [NOT FOR REVIEW] Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Checkpoint Created 5 years, 4 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
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 157
158 int VoiceDetectionImpl::InitializeHandle(void* handle) const { 158 int VoiceDetectionImpl::InitializeHandle(void* handle) const {
159 return WebRtcVad_Init(static_cast<Handle*>(handle)); 159 return WebRtcVad_Init(static_cast<Handle*>(handle));
160 } 160 }
161 161
162 int VoiceDetectionImpl::ConfigureHandle(void* handle) const { 162 int VoiceDetectionImpl::ConfigureHandle(void* handle) const {
163 return WebRtcVad_set_mode(static_cast<Handle*>(handle), 163 return WebRtcVad_set_mode(static_cast<Handle*>(handle),
164 MapSetting(likelihood_)); 164 MapSetting(likelihood_));
165 } 165 }
166 166
167 int VoiceDetectionImpl::num_handles_required() const { 167 size_t VoiceDetectionImpl::num_handles_required() const {
168 return 1; 168 return 1;
169 } 169 }
170 170
171 int VoiceDetectionImpl::GetHandleError(void* handle) const { 171 int VoiceDetectionImpl::GetHandleError(void* handle) const {
172 // The VAD has no get_error() function. 172 // The VAD has no get_error() function.
173 assert(handle != NULL); 173 assert(handle != NULL);
174 return apm_->kUnspecifiedError; 174 return apm_->kUnspecifiedError;
175 } 175 }
176 } // namespace webrtc 176 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/voice_detection_impl.h ('k') | webrtc/modules/interface/module_common_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698