Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: webrtc/modules/audio_processing/test/audioproc_float.cc

Issue 1234463003: Integrate Intelligibility with APM (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added resampling support to InterleaveTo; removed VAD logic Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 <stdio.h> 11 #include <stdio.h>
12 #include <sstream> 12 #include <sstream>
13 #include <string> 13 #include <string>
14 14
15 #include "gflags/gflags.h" 15 #include "gflags/gflags.h"
16 #include "webrtc/base/checks.h" 16 #include "webrtc/base/checks.h"
17 #include "webrtc/base/scoped_ptr.h" 17 #include "webrtc/base/scoped_ptr.h"
18 #include "webrtc/common_audio/channel_buffer.h" 18 #include "webrtc/common_audio/channel_buffer.h"
19 #include "webrtc/common_audio/wav_file.h" 19 #include "webrtc/common_audio/wav_file.h"
20 #include "webrtc/modules/audio_processing/include/audio_processing.h" 20 #include "webrtc/modules/audio_processing/include/audio_processing.h"
21 #include "webrtc/modules/audio_processing/test/protobuf_utils.h" 21 #include "webrtc/modules/audio_processing/test/protobuf_utils.h"
22 #include "webrtc/modules/audio_processing/test/test_utils.h" 22 #include "webrtc/modules/audio_processing/test/test_utils.h"
23 #include "webrtc/system_wrappers/interface/tick_util.h" 23 #include "webrtc/system_wrappers/interface/tick_util.h"
24 #include "webrtc/test/testsupport/trace_to_stderr.h" 24 #include "webrtc/test/testsupport/trace_to_stderr.h"
25 25
26 DEFINE_string(dump, "", "The name of the debug dump file to read from."); 26 DEFINE_string(dump, "", "The name of the debug dump file to read from.");
27 DEFINE_string(i, "", "The name of the input file to read from."); 27 DEFINE_string(i, "", "The name of the input file to read from.");
28 DEFINE_string(i_rev, "", "The name of the reverse input file to read from.");
28 DEFINE_string(o, "out.wav", "Name of the output file to write to."); 29 DEFINE_string(o, "out.wav", "Name of the output file to write to.");
30 DEFINE_string(o_rev,
31 "out_rev.wav",
32 "Name of the reverse output file to write to.");
29 DEFINE_int32(out_channels, 0, "Number of output channels. Defaults to input."); 33 DEFINE_int32(out_channels, 0, "Number of output channels. Defaults to input.");
30 DEFINE_int32(out_sample_rate, 0, 34 DEFINE_int32(out_sample_rate, 0,
31 "Output sample rate in Hz. Defaults to input."); 35 "Output sample rate in Hz. Defaults to input.");
32 DEFINE_string(mic_positions, "", 36 DEFINE_string(mic_positions, "",
33 "Space delimited cartesian coordinates of microphones in meters. " 37 "Space delimited cartesian coordinates of microphones in meters. "
34 "The coordinates of each point are contiguous. " 38 "The coordinates of each point are contiguous. "
35 "For a two element array: \"x1 y1 z1 x2 y2 z2\""); 39 "For a two element array: \"x1 y1 z1 x2 y2 z2\"");
36 40
37 DEFINE_bool(aec, false, "Enable echo cancellation."); 41 DEFINE_bool(aec, false, "Enable echo cancellation.");
38 DEFINE_bool(agc, false, "Enable automatic gain control."); 42 DEFINE_bool(agc, false, "Enable automatic gain control.");
39 DEFINE_bool(hpf, false, "Enable high-pass filtering."); 43 DEFINE_bool(hpf, false, "Enable high-pass filtering.");
40 DEFINE_bool(ns, false, "Enable noise suppression."); 44 DEFINE_bool(ns, false, "Enable noise suppression.");
41 DEFINE_bool(ts, false, "Enable transient suppression."); 45 DEFINE_bool(ts, false, "Enable transient suppression.");
42 DEFINE_bool(bf, false, "Enable beamforming."); 46 DEFINE_bool(bf, false, "Enable beamforming.");
47 DEFINE_bool(ie, false, "Enable intelligibility enhancer.");
43 DEFINE_bool(all, false, "Enable all components."); 48 DEFINE_bool(all, false, "Enable all components.");
44 49
45 DEFINE_int32(ns_level, -1, "Noise suppression level [0 - 3]."); 50 DEFINE_int32(ns_level, -1, "Noise suppression level [0 - 3].");
46 51
47 DEFINE_bool(perf, false, "Enable performance tests."); 52 DEFINE_bool(perf, false, "Enable performance tests.");
48 53
49 namespace webrtc { 54 namespace webrtc {
50 namespace { 55 namespace {
51 56
52 const int kChunksPerSecond = 100; 57 const int kChunksPerSecond = 100;
(...skipping 25 matching lines...) Expand all
78 WavReader in_file(FLAGS_i); 83 WavReader in_file(FLAGS_i);
79 // If the output format is uninitialized, use the input format. 84 // If the output format is uninitialized, use the input format.
80 const int out_channels = 85 const int out_channels =
81 FLAGS_out_channels ? FLAGS_out_channels : in_file.num_channels(); 86 FLAGS_out_channels ? FLAGS_out_channels : in_file.num_channels();
82 const int out_sample_rate = 87 const int out_sample_rate =
83 FLAGS_out_sample_rate ? FLAGS_out_sample_rate : in_file.sample_rate(); 88 FLAGS_out_sample_rate ? FLAGS_out_sample_rate : in_file.sample_rate();
84 WavWriter out_file(FLAGS_o, out_sample_rate, out_channels); 89 WavWriter out_file(FLAGS_o, out_sample_rate, out_channels);
85 90
86 Config config; 91 Config config;
87 config.Set<ExperimentalNs>(new ExperimentalNs(FLAGS_ts || FLAGS_all)); 92 config.Set<ExperimentalNs>(new ExperimentalNs(FLAGS_ts || FLAGS_all));
93 config.Set<Intelligibility>(new Intelligibility(FLAGS_ie || FLAGS_all));
88 94
89 if (FLAGS_bf || FLAGS_all) { 95 if (FLAGS_bf || FLAGS_all) {
90 const size_t num_mics = in_file.num_channels(); 96 const size_t num_mics = in_file.num_channels();
91 const std::vector<Point> array_geometry = 97 const std::vector<Point> array_geometry =
92 ParseArrayGeometry(FLAGS_mic_positions, num_mics); 98 ParseArrayGeometry(FLAGS_mic_positions, num_mics);
93 CHECK_EQ(array_geometry.size(), num_mics); 99 CHECK_EQ(array_geometry.size(), num_mics);
94 100
95 config.Set<Beamforming>(new Beamforming(true, array_geometry)); 101 config.Set<Beamforming>(new Beamforming(true, array_geometry));
96 } 102 }
97 103
98 rtc::scoped_ptr<AudioProcessing> ap(AudioProcessing::Create(config)); 104 rtc::scoped_ptr<AudioProcessing> ap(AudioProcessing::Create(config));
99 if (!FLAGS_dump.empty()) { 105 if (!FLAGS_dump.empty()) {
100 CHECK_EQ(kNoErr, ap->echo_cancellation()->Enable(FLAGS_aec || FLAGS_all)); 106 CHECK_EQ(kNoErr, ap->echo_cancellation()->Enable(FLAGS_aec || FLAGS_all));
101 } else if (FLAGS_aec) { 107 } else if (FLAGS_aec) {
102 fprintf(stderr, "-aec requires a -dump file.\n"); 108 fprintf(stderr, "-aec requires a -dump file.\n");
103 return -1; 109 return -1;
104 } 110 }
111 bool process_reverse = !FLAGS_i_rev.empty();
105 CHECK_EQ(kNoErr, ap->gain_control()->Enable(FLAGS_agc || FLAGS_all)); 112 CHECK_EQ(kNoErr, ap->gain_control()->Enable(FLAGS_agc || FLAGS_all));
106 CHECK_EQ(kNoErr, ap->gain_control()->set_mode(GainControl::kFixedDigital)); 113 CHECK_EQ(kNoErr, ap->gain_control()->set_mode(GainControl::kFixedDigital));
107 CHECK_EQ(kNoErr, ap->high_pass_filter()->Enable(FLAGS_hpf || FLAGS_all)); 114 CHECK_EQ(kNoErr, ap->high_pass_filter()->Enable(FLAGS_hpf || FLAGS_all));
108 CHECK_EQ(kNoErr, ap->noise_suppression()->Enable(FLAGS_ns || FLAGS_all)); 115 CHECK_EQ(kNoErr, ap->noise_suppression()->Enable(FLAGS_ns || FLAGS_all));
109 if (FLAGS_ns_level != -1) 116 if (FLAGS_ns_level != -1)
110 CHECK_EQ(kNoErr, ap->noise_suppression()->set_level( 117 CHECK_EQ(kNoErr, ap->noise_suppression()->set_level(
111 static_cast<NoiseSuppression::Level>(FLAGS_ns_level))); 118 static_cast<NoiseSuppression::Level>(FLAGS_ns_level)));
112 119
113 printf("Input file: %s\nChannels: %d, Sample rate: %d Hz\n\n", 120 printf("Input file: %s\nChannels: %d, Sample rate: %d Hz\n\n",
114 FLAGS_i.c_str(), in_file.num_channels(), in_file.sample_rate()); 121 FLAGS_i.c_str(), in_file.num_channels(), in_file.sample_rate());
115 printf("Output file: %s\nChannels: %d, Sample rate: %d Hz\n\n", 122 printf("Output file: %s\nChannels: %d, Sample rate: %d Hz\n\n",
116 FLAGS_o.c_str(), out_file.num_channels(), out_file.sample_rate()); 123 FLAGS_o.c_str(), out_file.num_channels(), out_file.sample_rate());
117 124
118 ChannelBuffer<float> in_buf( 125 ChannelBuffer<float> in_buf(
119 rtc::CheckedDivExact(in_file.sample_rate(), kChunksPerSecond), 126 rtc::CheckedDivExact(in_file.sample_rate(), kChunksPerSecond),
120 in_file.num_channels()); 127 in_file.num_channels());
121 ChannelBuffer<float> out_buf( 128 ChannelBuffer<float> out_buf(
122 rtc::CheckedDivExact(out_file.sample_rate(), kChunksPerSecond), 129 rtc::CheckedDivExact(out_file.sample_rate(), kChunksPerSecond),
123 out_file.num_channels()); 130 out_file.num_channels());
124 131
125 std::vector<float> in_interleaved(in_buf.size()); 132 std::vector<float> in_interleaved(in_buf.size());
126 std::vector<float> out_interleaved(out_buf.size()); 133 std::vector<float> out_interleaved(out_buf.size());
134
135 rtc::scoped_ptr<WavReader> in_rev_file;
136 rtc::scoped_ptr<WavWriter> out_rev_file;
137 rtc::scoped_ptr<ChannelBuffer<float>> in_rev_buf;
138 std::vector<float> in_rev_interleaved;
139 if (process_reverse) {
140 in_rev_file.reset(new WavReader(FLAGS_i_rev));
141 out_rev_file.reset(new WavWriter(FLAGS_o_rev, in_rev_file->sample_rate(),
142 in_rev_file->num_channels()));
143 printf("In rev file: %s\nChannels: %d, Sample rate: %d Hz\n\n",
144 FLAGS_i_rev.c_str(), in_rev_file->num_channels(),
145 in_rev_file->sample_rate());
146 printf("Out rev file: %s\nChannels: %d, Sample rate: %d Hz\n\n",
147 FLAGS_o_rev.c_str(), out_rev_file->num_channels(),
148 out_rev_file->sample_rate());
149 in_rev_buf.reset(new ChannelBuffer<float>(
150 rtc::CheckedDivExact(in_rev_file->sample_rate(), kChunksPerSecond),
151 in_rev_file->num_channels()));
152 in_rev_interleaved.resize(in_rev_buf->size());
153 }
154
127 TickTime processing_start_time; 155 TickTime processing_start_time;
128 TickInterval accumulated_time; 156 TickInterval accumulated_time;
129 int num_chunks = 0; 157 int num_chunks = 0;
130 while (in_file.ReadSamples(in_interleaved.size(), 158 while (in_file.ReadSamples(in_interleaved.size(),
131 &in_interleaved[0]) == in_interleaved.size()) { 159 &in_interleaved[0]) == in_interleaved.size()) {
132 // Have logs display the file time rather than wallclock time. 160 // Have logs display the file time rather than wallclock time.
133 trace_to_stderr.SetTimeSeconds(num_chunks * 1.f / kChunksPerSecond); 161 trace_to_stderr.SetTimeSeconds(num_chunks * 1.f / kChunksPerSecond);
134 FloatS16ToFloat(&in_interleaved[0], in_interleaved.size(), 162 FloatS16ToFloat(&in_interleaved[0], in_interleaved.size(),
135 &in_interleaved[0]); 163 &in_interleaved[0]);
136 Deinterleave(&in_interleaved[0], in_buf.num_frames(), 164 Deinterleave(&in_interleaved[0], in_buf.num_frames(),
137 in_buf.num_channels(), in_buf.channels()); 165 in_buf.num_channels(), in_buf.channels());
166 if (process_reverse) {
167 in_rev_file->ReadSamples(in_rev_interleaved.size(),
168 in_rev_interleaved.data());
169 FloatS16ToFloat(in_rev_interleaved.data(), in_rev_interleaved.size(),
170 in_rev_interleaved.data());
171 Deinterleave(in_rev_interleaved.data(), in_rev_buf->num_frames(),
172 in_rev_buf->num_channels(), in_rev_buf->channels());
173 }
138 174
139 if (FLAGS_perf) { 175 if (FLAGS_perf) {
140 processing_start_time = TickTime::Now(); 176 processing_start_time = TickTime::Now();
141 } 177 }
142 CHECK_EQ(kNoErr, 178 CHECK_EQ(kNoErr,
143 ap->ProcessStream(in_buf.channels(), 179 ap->ProcessStream(in_buf.channels(),
144 in_buf.num_frames(), 180 in_buf.num_frames(),
145 in_file.sample_rate(), 181 in_file.sample_rate(),
146 LayoutFromChannels(in_buf.num_channels()), 182 LayoutFromChannels(in_buf.num_channels()),
147 out_file.sample_rate(), 183 out_file.sample_rate(),
148 LayoutFromChannels(out_buf.num_channels()), 184 LayoutFromChannels(out_buf.num_channels()),
149 out_buf.channels())); 185 out_buf.channels()));
186 if (process_reverse) {
187 CHECK_EQ(kNoErr, ap->ProcessReverseStream(
188 in_rev_buf->channels(), in_rev_buf->num_frames(),
189 in_rev_file->sample_rate(),
190 LayoutFromChannels(in_rev_buf->num_channels())));
Andrew MacDonald 2015/07/29 03:52:27 Is this indentation right? Run clang-format if you
ekm 2015/07/29 23:35:06 It's strange, but that's what 'git cl format' give
191 }
150 if (FLAGS_perf) { 192 if (FLAGS_perf) {
151 accumulated_time += TickTime::Now() - processing_start_time; 193 accumulated_time += TickTime::Now() - processing_start_time;
152 } 194 }
153 195
154 Interleave(out_buf.channels(), out_buf.num_frames(), 196 Interleave(out_buf.channels(), out_buf.num_frames(),
155 out_buf.num_channels(), &out_interleaved[0]); 197 out_buf.num_channels(), &out_interleaved[0]);
156 FloatToFloatS16(&out_interleaved[0], out_interleaved.size(), 198 FloatToFloatS16(&out_interleaved[0], out_interleaved.size(),
157 &out_interleaved[0]); 199 &out_interleaved[0]);
158 out_file.WriteSamples(&out_interleaved[0], out_interleaved.size()); 200 out_file.WriteSamples(&out_interleaved[0], out_interleaved.size());
201 if (process_reverse) {
202 Interleave(in_rev_buf->channels(), in_rev_buf->num_frames(),
203 in_rev_buf->num_channels(), in_rev_interleaved.data());
204 FloatToFloatS16(in_rev_interleaved.data(), in_rev_interleaved.size(),
205 in_rev_interleaved.data());
206 out_rev_file->WriteSamples(in_rev_interleaved.data(),
207 in_rev_interleaved.size());
208 }
159 num_chunks++; 209 num_chunks++;
160 } 210 }
161 if (FLAGS_perf) { 211 if (FLAGS_perf) {
162 int64_t execution_time_ms = accumulated_time.Milliseconds(); 212 int64_t execution_time_ms = accumulated_time.Milliseconds();
163 printf("\nExecution time: %.3f s\nFile time: %.2f s\n" 213 printf("\nExecution time: %.3f s\nFile time: %.2f s\n"
164 "Time per chunk: %.3f ms\n", 214 "Time per chunk: %.3f ms\n",
165 execution_time_ms * 0.001f, num_chunks * 1.f / kChunksPerSecond, 215 execution_time_ms * 0.001f, num_chunks * 1.f / kChunksPerSecond,
166 execution_time_ms * 1.f / num_chunks); 216 execution_time_ms * 1.f / num_chunks);
167 } 217 }
168 return 0; 218 return 0;
169 } 219 }
170 220
171 } // namespace webrtc 221 } // namespace webrtc
172 222
173 int main(int argc, char* argv[]) { 223 int main(int argc, char* argv[]) {
174 return webrtc::main(argc, argv); 224 return webrtc::main(argc, argv);
175 } 225 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698