| 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 #include <stdlib.h> | 11 #include <stdlib.h> |
| 12 | 12 |
| 13 #include "webrtc/common_audio/vad/vad_unittest.h" | 13 #include "webrtc/common_audio/vad/vad_unittest.h" |
| 14 #include "webrtc/test/gtest.h" | 14 #include "webrtc/test/gtest.h" |
| 15 #include "webrtc/typedefs.h" | 15 #include "webrtc/typedefs.h" |
| 16 | 16 |
| 17 extern "C" { | 17 extern "C" { |
| 18 #include "webrtc/common_audio/vad/vad_core.h" | 18 #include "webrtc/common_audio/vad/vad_core.h" |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace { | 21 namespace webrtc { |
| 22 namespace test { |
| 22 | 23 |
| 23 TEST_F(VadTest, InitCore) { | 24 TEST_F(VadTest, InitCore) { |
| 24 // Test WebRtcVad_InitCore(). | 25 // Test WebRtcVad_InitCore(). |
| 25 VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT))); | 26 VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT))); |
| 26 | 27 |
| 27 // null pointer test. | 28 // null pointer test. |
| 28 EXPECT_EQ(-1, WebRtcVad_InitCore(nullptr)); | 29 EXPECT_EQ(-1, WebRtcVad_InitCore(nullptr)); |
| 29 | 30 |
| 30 // Verify return = 0 for non-null pointer. | 31 // Verify return = 0 for non-null pointer. |
| 31 EXPECT_EQ(0, WebRtcVad_InitCore(self)); | 32 EXPECT_EQ(0, WebRtcVad_InitCore(self)); |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 if (ValidRatesAndFrameLengths(32000, kFrameLengths[j])) { | 96 if (ValidRatesAndFrameLengths(32000, kFrameLengths[j])) { |
| 96 EXPECT_EQ(1, WebRtcVad_CalcVad32khz(self, speech, kFrameLengths[j])); | 97 EXPECT_EQ(1, WebRtcVad_CalcVad32khz(self, speech, kFrameLengths[j])); |
| 97 } | 98 } |
| 98 if (ValidRatesAndFrameLengths(48000, kFrameLengths[j])) { | 99 if (ValidRatesAndFrameLengths(48000, kFrameLengths[j])) { |
| 99 EXPECT_EQ(1, WebRtcVad_CalcVad48khz(self, speech, kFrameLengths[j])); | 100 EXPECT_EQ(1, WebRtcVad_CalcVad48khz(self, speech, kFrameLengths[j])); |
| 100 } | 101 } |
| 101 } | 102 } |
| 102 | 103 |
| 103 free(self); | 104 free(self); |
| 104 } | 105 } |
| 105 } // namespace | 106 } // namespace test |
| 107 } // namespace webrtc |
| OLD | NEW |