Index: webrtc/modules/audio_processing/aec3/block_framer_unittest.cc |
diff --git a/webrtc/modules/audio_processing/aec3/block_framer_unittest.cc b/webrtc/modules/audio_processing/aec3/block_framer_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..65ec904a23335f25ad5bbea87ef0fa775e0e824a |
--- /dev/null |
+++ b/webrtc/modules/audio_processing/aec3/block_framer_unittest.cc |
@@ -0,0 +1,100 @@ |
+/* |
+ * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
+ * |
+ * 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 <string> |
+#include <vector> |
+ |
+#include "webrtc/modules/audio_processing/aec3/aec3_constants.h" |
+#include "webrtc/modules/audio_processing/aec3/block_framer.h" |
hlundin-webrtc
2016/12/22 10:23:56
This one should go first.
https://google.github.io
peah-webrtc
2016/12/22 16:40:03
Done.
|
+#include "webrtc/test/gtest.h" |
+ |
+namespace webrtc { |
+namespace { |
+ |
+void SetupSubFrameView(std::vector<std::vector<float>>* sub_frame, |
+ std::vector<rtc::ArrayView<float>>* sub_frame_view) { |
+ for (size_t k = 0; k < sub_frame_view->size(); ++k) { |
+ (*sub_frame_view)[k] = |
+ rtc::ArrayView<float>(&(*sub_frame)[k][0], (*sub_frame)[k].size()); |
+ } |
+} |
+ |
+float ComputeSampleValue(size_t chunk_counter, |
+ size_t chunk_size, |
+ size_t band, |
+ size_t sample_index, |
+ int offset) { |
+ float value = |
+ static_cast<int>(chunk_counter * chunk_size + sample_index) + offset; |
+ return value > 0 ? 5000 * band + value : 0; |
+} |
+ |
+bool VerifySubFrame(size_t sub_frame_counter, |
+ int offset, |
+ const std::vector<rtc::ArrayView<float>>& sub_frame_view) { |
+ for (size_t k = 0; k < sub_frame_view.size(); ++k) { |
+ for (size_t i = 0; i < sub_frame_view[k].size(); ++i) { |
+ const float reference_value = |
+ ComputeSampleValue(sub_frame_counter, kSubFrameLength, k, i, offset); |
+ if (reference_value != sub_frame_view[k][i]) { |
+ return false; |
+ } |
+ } |
+ } |
+ return true; |
+} |
+ |
+void FillBlock(size_t block_counter, std::vector<std::vector<float>>* block) { |
+ for (size_t k = 0; k < block->size(); ++k) { |
+ for (size_t i = 0; i < (*block)[0].size(); ++i) { |
+ (*block)[k][i] = ComputeSampleValue(block_counter, kBlockSize, k, i, 0); |
+ } |
+ } |
+} |
+ |
+// Verifies that the BlockFramer is able to produce the expected frame content. |
+void RunFramerTest(int sample_rate_hz) { |
+ constexpr size_t kNumSubFramesToProcess = 2; |
+ const size_t num_bands = NumBandsForRate(sample_rate_hz); |
+ |
+ std::vector<std::vector<float>> block(num_bands, |
+ std::vector<float>(kBlockSize, 0.f)); |
+ std::vector<std::vector<float>> output_sub_frame( |
+ num_bands, std::vector<float>(kSubFrameLength, 0.f)); |
+ std::vector<rtc::ArrayView<float>> output_sub_frame_view(num_bands); |
+ SetupSubFrameView(&output_sub_frame, &output_sub_frame_view); |
+ BlockFramer framer(num_bands); |
+ |
+ size_t block_index = 0; |
+ for (size_t sub_frame_index = 0; sub_frame_index < kNumSubFramesToProcess; |
+ ++sub_frame_index) { |
+ FillBlock(block_index++, &block); |
+ framer.InsertBlockAndExtractSubFrame(block, &output_sub_frame_view); |
+ EXPECT_TRUE(VerifySubFrame(sub_frame_index, -64, output_sub_frame_view)); |
+ |
+ if ((sub_frame_index + 1) % 4 == 0) { |
+ FillBlock(block_index++, &block); |
+ framer.InsertBlock(block); |
+ } |
+ } |
+} |
+ |
+} // namespace |
+ |
+TEST(BlockFramer, FrameBitexactness) { |
+ for (auto rate : {8000, 16000, 32000, 48000}) { |
+ std::ostringstream ss; |
+ ss << "Sample rate: " << rate; |
+ SCOPED_TRACE(ss.str()); |
+ RunFramerTest(rate); |
+ } |
+} |
hlundin-webrtc
2016/12/22 10:23:56
You are testing the "good use case", but you are n
peah-webrtc
2016/12/22 16:40:03
Done.
|
+ |
+} // namespace webrtc |