2012-01-09 09:54:07 +00:00
|
|
|
/*
|
2012-01-25 12:18:12 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2012-01-09 09:54:07 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "common_audio/vad/vad_unittest.h"
|
|
|
|
|
#include "test/gtest.h"
|
2012-01-09 09:54:07 +00:00
|
|
|
|
|
|
|
|
extern "C" {
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "common_audio/vad/vad_core.h"
|
|
|
|
|
#include "common_audio/vad/vad_sp.h"
|
2012-01-09 09:54:07 +00:00
|
|
|
}
|
|
|
|
|
|
2017-03-09 06:25:06 -08:00
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
2012-01-09 09:54:07 +00:00
|
|
|
|
|
|
|
|
TEST_F(VadTest, vad_sp) {
|
2012-01-25 12:18:12 +00:00
|
|
|
VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT)));
|
Update a ton of audio code to use size_t more correctly and in general reduce
use of int16_t/uint16_t.
This is the upshot of a recommendation by henrik.lundin and kwiberg on an original small change ( https://webrtc-codereview.appspot.com/42569004/#ps1 ) to stop using int16_t just because values could fit in it, and is similar in nature to a previous "mass change to use size_t more" ( https://webrtc-codereview.appspot.com/23129004/ ) which also needed to be split up for review but to land all at once, since, like adding "const", such changes tend to cause a lot of transitive effects.
This was be reviewed and approved in pieces:
https://codereview.webrtc.org/1224093003
https://codereview.webrtc.org/1224123002
https://codereview.webrtc.org/1224163002
https://codereview.webrtc.org/1225133003
https://codereview.webrtc.org/1225173002
https://codereview.webrtc.org/1227163003
https://codereview.webrtc.org/1227203003
https://codereview.webrtc.org/1227213002
https://codereview.webrtc.org/1227893002
https://codereview.webrtc.org/1228793004
https://codereview.webrtc.org/1228803003
https://codereview.webrtc.org/1228823002
https://codereview.webrtc.org/1228823003
https://codereview.webrtc.org/1228843002
https://codereview.webrtc.org/1230693002
https://codereview.webrtc.org/1231713002
The change is being landed as TBR to all the folks who reviewed the above.
BUG=chromium:81439
TEST=none
R=andrew@webrtc.org, pbos@webrtc.org
TBR=aluebs, andrew, asapersson, henrika, hlundin, jan.skoglund, kwiberg, minyue, pbos, pthatcher
Review URL: https://codereview.webrtc.org/1230503003 .
Cr-Commit-Position: refs/heads/master@{#9768}
2015-08-24 14:52:23 -07:00
|
|
|
const size_t kMaxFrameLenSp = 960; // Maximum frame length in this unittest.
|
2012-10-15 17:46:19 +00:00
|
|
|
int16_t zeros[kMaxFrameLenSp] = {0};
|
2012-01-09 09:54:07 +00:00
|
|
|
int32_t state[2] = {0};
|
2012-10-15 17:46:19 +00:00
|
|
|
int16_t data_in[kMaxFrameLenSp];
|
|
|
|
|
int16_t data_out[kMaxFrameLenSp];
|
2012-01-09 09:54:07 +00:00
|
|
|
|
2021-07-26 12:15:29 +02:00
|
|
|
// We expect the first value to be 1600 as long as `frame_counter` is zero,
|
2012-01-09 09:54:07 +00:00
|
|
|
// which is true for the first iteration.
|
|
|
|
|
static const int16_t kReferenceMin[32] = {
|
|
|
|
|
1600, 720, 509, 512, 532, 552, 570, 588, 606, 624, 642,
|
|
|
|
|
659, 675, 691, 707, 723, 1600, 544, 502, 522, 542, 561,
|
|
|
|
|
579, 597, 615, 633, 651, 667, 683, 699, 715, 731};
|
|
|
|
|
|
|
|
|
|
// Construct a speech signal that will trigger the VAD in all modes. It is
|
|
|
|
|
// known that (i * i) will wrap around, but that doesn't matter in this case.
|
Update a ton of audio code to use size_t more correctly and in general reduce
use of int16_t/uint16_t.
This is the upshot of a recommendation by henrik.lundin and kwiberg on an original small change ( https://webrtc-codereview.appspot.com/42569004/#ps1 ) to stop using int16_t just because values could fit in it, and is similar in nature to a previous "mass change to use size_t more" ( https://webrtc-codereview.appspot.com/23129004/ ) which also needed to be split up for review but to land all at once, since, like adding "const", such changes tend to cause a lot of transitive effects.
This was be reviewed and approved in pieces:
https://codereview.webrtc.org/1224093003
https://codereview.webrtc.org/1224123002
https://codereview.webrtc.org/1224163002
https://codereview.webrtc.org/1225133003
https://codereview.webrtc.org/1225173002
https://codereview.webrtc.org/1227163003
https://codereview.webrtc.org/1227203003
https://codereview.webrtc.org/1227213002
https://codereview.webrtc.org/1227893002
https://codereview.webrtc.org/1228793004
https://codereview.webrtc.org/1228803003
https://codereview.webrtc.org/1228823002
https://codereview.webrtc.org/1228823003
https://codereview.webrtc.org/1228843002
https://codereview.webrtc.org/1230693002
https://codereview.webrtc.org/1231713002
The change is being landed as TBR to all the folks who reviewed the above.
BUG=chromium:81439
TEST=none
R=andrew@webrtc.org, pbos@webrtc.org
TBR=aluebs, andrew, asapersson, henrika, hlundin, jan.skoglund, kwiberg, minyue, pbos, pthatcher
Review URL: https://codereview.webrtc.org/1230503003 .
Cr-Commit-Position: refs/heads/master@{#9768}
2015-08-24 14:52:23 -07:00
|
|
|
for (size_t i = 0; i < kMaxFrameLenSp; ++i) {
|
2015-07-22 15:17:22 -07:00
|
|
|
data_in[i] = static_cast<int16_t>(i * i);
|
2012-01-09 09:54:07 +00:00
|
|
|
}
|
|
|
|
|
// Input values all zeros, expect all zeros out.
|
2012-10-15 17:46:19 +00:00
|
|
|
WebRtcVad_Downsampling(zeros, data_out, state, kMaxFrameLenSp);
|
2012-01-09 09:54:07 +00:00
|
|
|
EXPECT_EQ(0, state[0]);
|
|
|
|
|
EXPECT_EQ(0, state[1]);
|
Update a ton of audio code to use size_t more correctly and in general reduce
use of int16_t/uint16_t.
This is the upshot of a recommendation by henrik.lundin and kwiberg on an original small change ( https://webrtc-codereview.appspot.com/42569004/#ps1 ) to stop using int16_t just because values could fit in it, and is similar in nature to a previous "mass change to use size_t more" ( https://webrtc-codereview.appspot.com/23129004/ ) which also needed to be split up for review but to land all at once, since, like adding "const", such changes tend to cause a lot of transitive effects.
This was be reviewed and approved in pieces:
https://codereview.webrtc.org/1224093003
https://codereview.webrtc.org/1224123002
https://codereview.webrtc.org/1224163002
https://codereview.webrtc.org/1225133003
https://codereview.webrtc.org/1225173002
https://codereview.webrtc.org/1227163003
https://codereview.webrtc.org/1227203003
https://codereview.webrtc.org/1227213002
https://codereview.webrtc.org/1227893002
https://codereview.webrtc.org/1228793004
https://codereview.webrtc.org/1228803003
https://codereview.webrtc.org/1228823002
https://codereview.webrtc.org/1228823003
https://codereview.webrtc.org/1228843002
https://codereview.webrtc.org/1230693002
https://codereview.webrtc.org/1231713002
The change is being landed as TBR to all the folks who reviewed the above.
BUG=chromium:81439
TEST=none
R=andrew@webrtc.org, pbos@webrtc.org
TBR=aluebs, andrew, asapersson, henrika, hlundin, jan.skoglund, kwiberg, minyue, pbos, pthatcher
Review URL: https://codereview.webrtc.org/1230503003 .
Cr-Commit-Position: refs/heads/master@{#9768}
2015-08-24 14:52:23 -07:00
|
|
|
for (size_t i = 0; i < kMaxFrameLenSp / 2; ++i) {
|
2012-01-09 09:54:07 +00:00
|
|
|
EXPECT_EQ(0, data_out[i]);
|
|
|
|
|
}
|
|
|
|
|
// Make a simple non-zero data test.
|
2012-10-15 17:46:19 +00:00
|
|
|
WebRtcVad_Downsampling(data_in, data_out, state, kMaxFrameLenSp);
|
2012-01-09 09:54:07 +00:00
|
|
|
EXPECT_EQ(207, state[0]);
|
|
|
|
|
EXPECT_EQ(2270, state[1]);
|
|
|
|
|
|
2012-01-25 12:18:12 +00:00
|
|
|
ASSERT_EQ(0, WebRtcVad_InitCore(self));
|
2012-01-09 09:54:07 +00:00
|
|
|
// TODO(bjornv): Replace this part of the test with taking values from an
|
|
|
|
|
// array and calculate the reference value here. Make sure the values are not
|
|
|
|
|
// ordered.
|
|
|
|
|
for (int16_t i = 0; i < 16; ++i) {
|
|
|
|
|
int16_t value = 500 * (i + 1);
|
2012-03-20 12:53:06 +00:00
|
|
|
for (int j = 0; j < kNumChannels; ++j) {
|
2012-01-09 09:54:07 +00:00
|
|
|
// Use values both above and below initialized value.
|
|
|
|
|
EXPECT_EQ(kReferenceMin[i], WebRtcVad_FindMinimum(self, value, j));
|
|
|
|
|
EXPECT_EQ(kReferenceMin[i + 16], WebRtcVad_FindMinimum(self, 12000, j));
|
|
|
|
|
}
|
|
|
|
|
self->frame_counter++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free(self);
|
|
|
|
|
}
|
2017-03-09 06:25:06 -08:00
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|