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

Side by Side Diff: webrtc/common_audio/vad/vad_core_unittest.cc

Issue 1227203003: Update audio code to use size_t more correctly, webrtc/common_audio/ portion. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync 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
« no previous file with comments | « webrtc/common_audio/vad/vad_core.c ('k') | webrtc/common_audio/vad/vad_filterbank.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 if (ValidRatesAndFrameLengths(32000, kFrameLengths[j])) { 75 if (ValidRatesAndFrameLengths(32000, kFrameLengths[j])) {
76 EXPECT_EQ(0, WebRtcVad_CalcVad32khz(self, speech, kFrameLengths[j])); 76 EXPECT_EQ(0, WebRtcVad_CalcVad32khz(self, speech, kFrameLengths[j]));
77 } 77 }
78 if (ValidRatesAndFrameLengths(48000, kFrameLengths[j])) { 78 if (ValidRatesAndFrameLengths(48000, kFrameLengths[j])) {
79 EXPECT_EQ(0, WebRtcVad_CalcVad48khz(self, speech, kFrameLengths[j])); 79 EXPECT_EQ(0, WebRtcVad_CalcVad48khz(self, speech, kFrameLengths[j]));
80 } 80 }
81 } 81 }
82 82
83 // Construct a speech signal that will trigger the VAD in all modes. It is 83 // Construct a speech signal that will trigger the VAD in all modes. It is
84 // known that (i * i) will wrap around, but that doesn't matter in this case. 84 // known that (i * i) will wrap around, but that doesn't matter in this case.
85 for (int16_t i = 0; i < kMaxFrameLength; ++i) { 85 for (size_t i = 0; i < kMaxFrameLength; ++i) {
86 speech[i] = static_cast<int16_t>(i * i); 86 speech[i] = static_cast<int16_t>(i * i);
87 } 87 }
88 for (size_t j = 0; j < kFrameLengthsSize; ++j) { 88 for (size_t j = 0; j < kFrameLengthsSize; ++j) {
89 if (ValidRatesAndFrameLengths(8000, kFrameLengths[j])) { 89 if (ValidRatesAndFrameLengths(8000, kFrameLengths[j])) {
90 EXPECT_EQ(1, WebRtcVad_CalcVad8khz(self, speech, kFrameLengths[j])); 90 EXPECT_EQ(1, WebRtcVad_CalcVad8khz(self, speech, kFrameLengths[j]));
91 } 91 }
92 if (ValidRatesAndFrameLengths(16000, kFrameLengths[j])) { 92 if (ValidRatesAndFrameLengths(16000, kFrameLengths[j])) {
93 EXPECT_EQ(1, WebRtcVad_CalcVad16khz(self, speech, kFrameLengths[j])); 93 EXPECT_EQ(1, WebRtcVad_CalcVad16khz(self, speech, kFrameLengths[j]));
94 } 94 }
95 if (ValidRatesAndFrameLengths(32000, kFrameLengths[j])) { 95 if (ValidRatesAndFrameLengths(32000, kFrameLengths[j])) {
96 EXPECT_EQ(1, WebRtcVad_CalcVad32khz(self, speech, kFrameLengths[j])); 96 EXPECT_EQ(1, WebRtcVad_CalcVad32khz(self, speech, kFrameLengths[j]));
97 } 97 }
98 if (ValidRatesAndFrameLengths(48000, kFrameLengths[j])) { 98 if (ValidRatesAndFrameLengths(48000, kFrameLengths[j])) {
99 EXPECT_EQ(1, WebRtcVad_CalcVad48khz(self, speech, kFrameLengths[j])); 99 EXPECT_EQ(1, WebRtcVad_CalcVad48khz(self, speech, kFrameLengths[j]));
100 } 100 }
101 } 101 }
102 102
103 free(self); 103 free(self);
104 } 104 }
105 } // namespace 105 } // namespace
OLDNEW
« no previous file with comments | « webrtc/common_audio/vad/vad_core.c ('k') | webrtc/common_audio/vad/vad_filterbank.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698