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 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 (int16_t i = 0; i < kMaxFrameLength; ++i) { |
86 speech[i] = (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 |
OLD | NEW |