blob: a1127ad244a75d7cff27f4678724acc4e33a172b [file] [log] [blame]
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +00001/*
bjornv@webrtc.org0c6f9312012-01-30 09:39:08 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +00003 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
pbos@webrtc.orgaa30bb72013-05-27 09:49:58 +000011#include "webrtc/common_audio/vad/vad_unittest.h"
bjornv@webrtc.orge6471ba2012-01-09 09:54:07 +000012
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000013#include <stdlib.h>
14
pbos@webrtc.orgaa30bb72013-05-27 09:49:58 +000015#include "testing/gtest/include/gtest/gtest.h"
bjornv@webrtc.orgb1c32762012-06-12 08:19:24 +000016
pbos@webrtc.orgaa30bb72013-05-27 09:49:58 +000017#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h"
18#include "webrtc/common_audio/vad/include/webrtc_vad.h"
19#include "webrtc/typedefs.h"
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000020
bjornv@webrtc.orge6471ba2012-01-09 09:54:07 +000021VadTest::VadTest() {}
bjornv@webrtc.orgc68f80a2011-12-20 14:08:34 +000022
bjornv@webrtc.orge6471ba2012-01-09 09:54:07 +000023void VadTest::SetUp() {}
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000024
bjornv@webrtc.orge6471ba2012-01-09 09:54:07 +000025void VadTest::TearDown() {}
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000026
27// Returns true if the rate and frame length combination is valid.
bjornv@webrtc.orgb38fca12012-06-19 11:03:32 +000028bool VadTest::ValidRatesAndFrameLengths(int rate, int frame_length) {
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000029 if (rate == 8000) {
30 if (frame_length == 80 || frame_length == 160 || frame_length == 240) {
31 return true;
32 }
33 return false;
34 } else if (rate == 16000) {
35 if (frame_length == 160 || frame_length == 320 || frame_length == 480) {
36 return true;
37 }
38 return false;
tina.legrand@webrtc.orgef433572012-10-15 17:46:19 +000039 } else if (rate == 32000) {
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000040 if (frame_length == 320 || frame_length == 640 || frame_length == 960) {
41 return true;
42 }
43 return false;
tina.legrand@webrtc.orgef433572012-10-15 17:46:19 +000044 } else if (rate == 48000) {
45 if (frame_length == 480 || frame_length == 960 || frame_length == 1440) {
46 return true;
47 }
48 return false;
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000049 }
50
51 return false;
52}
53
bjornv@webrtc.orge6471ba2012-01-09 09:54:07 +000054namespace {
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000055
56TEST_F(VadTest, ApiTest) {
57 // This API test runs through the APIs for all possible valid and invalid
58 // combinations.
59
60 VadInst* handle = NULL;
61 int16_t zeros[kMaxFrameLength] = { 0 };
62
63 // Construct a speech signal that will trigger the VAD in all modes. It is
64 // known that (i * i) will wrap around, but that doesn't matter in this case.
65 int16_t speech[kMaxFrameLength];
66 for (int16_t i = 0; i < kMaxFrameLength; i++) {
67 speech[i] = (i * i);
68 }
69
bjornv@webrtc.org78f0cdc2012-03-27 11:06:29 +000070 // NULL instance tests
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000071 EXPECT_EQ(-1, WebRtcVad_Create(NULL));
72 EXPECT_EQ(-1, WebRtcVad_Init(NULL));
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000073 EXPECT_EQ(-1, WebRtcVad_set_mode(NULL, kModes[0]));
74 EXPECT_EQ(-1, WebRtcVad_Process(NULL, kRates[0], speech, kFrameLengths[0]));
75
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000076 // WebRtcVad_Create()
77 ASSERT_EQ(0, WebRtcVad_Create(&handle));
78
79 // Not initialized tests
80 EXPECT_EQ(-1, WebRtcVad_Process(handle, kRates[0], speech, kFrameLengths[0]));
81 EXPECT_EQ(-1, WebRtcVad_set_mode(handle, kModes[0]));
82
83 // WebRtcVad_Init() test
84 ASSERT_EQ(0, WebRtcVad_Init(handle));
85
bjornv@webrtc.org78f0cdc2012-03-27 11:06:29 +000086 // WebRtcVad_set_mode() invalid modes tests. Tries smallest supported value
87 // minus one and largest supported value plus one.
88 EXPECT_EQ(-1, WebRtcVad_set_mode(handle,
89 WebRtcSpl_MinValueW32(kModes,
90 kModesSize) - 1));
91 EXPECT_EQ(-1, WebRtcVad_set_mode(handle,
92 WebRtcSpl_MaxValueW32(kModes,
93 kModesSize) + 1));
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +000094
95 // WebRtcVad_Process() tests
96 // NULL speech pointer
97 EXPECT_EQ(-1, WebRtcVad_Process(handle, kRates[0], NULL, kFrameLengths[0]));
98 // Invalid sampling rate
99 EXPECT_EQ(-1, WebRtcVad_Process(handle, 9999, speech, kFrameLengths[0]));
100 // All zeros as input should work
101 EXPECT_EQ(0, WebRtcVad_Process(handle, kRates[0], zeros, kFrameLengths[0]));
102 for (size_t k = 0; k < kModesSize; k++) {
103 // Test valid modes
104 EXPECT_EQ(0, WebRtcVad_set_mode(handle, kModes[k]));
105 // Loop through sampling rate and frame length combinations
106 for (size_t i = 0; i < kRatesSize; i++) {
107 for (size_t j = 0; j < kFrameLengthsSize; j++) {
108 if (ValidRatesAndFrameLengths(kRates[i], kFrameLengths[j])) {
109 EXPECT_EQ(1, WebRtcVad_Process(handle,
110 kRates[i],
111 speech,
112 kFrameLengths[j]));
113 } else {
114 EXPECT_EQ(-1, WebRtcVad_Process(handle,
115 kRates[i],
116 speech,
117 kFrameLengths[j]));
118 }
119 }
120 }
121 }
122
bjornv@webrtc.org2a796722014-04-22 04:45:35 +0000123 WebRtcVad_Free(handle);
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +0000124}
125
bjornv@webrtc.orgb1c32762012-06-12 08:19:24 +0000126TEST_F(VadTest, ValidRatesFrameLengths) {
127 // This test verifies valid and invalid rate/frame_length combinations. We
tina.legrand@webrtc.orgef433572012-10-15 17:46:19 +0000128 // loop through some sampling rates and frame lengths from negative values to
bjornv@webrtc.orgb1c32762012-06-12 08:19:24 +0000129 // values larger than possible.
tina.legrand@webrtc.orgef433572012-10-15 17:46:19 +0000130 const int kNumRates = 12;
131 const int kRates[kNumRates] = {
132 -8000, -4000, 0, 4000, 8000, 8001, 15999, 16000, 32000, 48000, 48001, 96000
133 };
134
135 const int kNumFrameLengths = 13;
136 const int kFrameLengths[kNumFrameLengths] = {
137 -10, 0, 80, 81, 159, 160, 240, 320, 480, 640, 960, 1440, 2000
138 };
139
140 for (int i = 0; i < kNumRates; i++) {
141 for (int j = 0; j < kNumFrameLengths; j++) {
142 if (ValidRatesAndFrameLengths(kRates[i], kFrameLengths[j])) {
143 EXPECT_EQ(0, WebRtcVad_ValidRateAndFrameLength(kRates[i],
144 kFrameLengths[j]));
bjornv@webrtc.orgb1c32762012-06-12 08:19:24 +0000145 } else {
tina.legrand@webrtc.orgef433572012-10-15 17:46:19 +0000146 EXPECT_EQ(-1, WebRtcVad_ValidRateAndFrameLength(kRates[i],
147 kFrameLengths[j]));
bjornv@webrtc.orgb1c32762012-06-12 08:19:24 +0000148 }
149 }
150 }
151}
152
bjornv@webrtc.org250cd6f2011-10-28 12:45:58 +0000153// TODO(bjornv): Add a process test, run on file.
154
155} // namespace