blob: c4e7c3dced8d3d7e752eeecd23a86cddf26fd561 [file] [log] [blame]
andrew@webrtc.org08df9b22014-12-16 20:57:15 +00001/*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 *
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
aluebsb0ad43b2015-11-20 00:11:53 -080011#include <iostream>
kwiberg62eaacf2016-02-17 06:39:05 -080012#include <memory>
peah60a189f2016-05-24 20:54:40 -070013
14#include <string.h>
andrew@webrtc.org08df9b22014-12-16 20:57:15 +000015
16#include "gflags/gflags.h"
andrew@webrtc.org08df9b22014-12-16 20:57:15 +000017#include "webrtc/modules/audio_processing/include/audio_processing.h"
peah60a189f2016-05-24 20:54:40 -070018#include "webrtc/modules/audio_processing/test/aec_dump_based_simulator.h"
19#include "webrtc/modules/audio_processing/test/audio_processing_simulator.h"
20#include "webrtc/modules/audio_processing/test/wav_based_simulator.h"
andrew@webrtc.org08df9b22014-12-16 20:57:15 +000021
peah60a189f2016-05-24 20:54:40 -070022namespace webrtc {
23namespace test {
Peter Kasting69558702016-01-12 16:26:35 -080024namespace {
25
peah60a189f2016-05-24 20:54:40 -070026const int kParameterNotSpecifiedValue = -10000;
27
28const char kUsageDescription[] =
29 "Usage: audioproc_f [options] -i <input.wav>\n"
30 " or\n"
31 " audioproc_f [options] -dump_input <aec_dump>\n"
32 "\n\n"
33 "Command-line tool to simulate a call using the audio "
34 "processing module, either based on wav files or "
35 "protobuf debug dump recordings.";
36
37DEFINE_string(dump_input, "", "Aec dump input filename");
38DEFINE_string(dump_output, "", "Aec dump output filename");
39DEFINE_string(i, "", "Forward stream input wav filename");
40DEFINE_string(o, "", "Forward stream output wav filename");
41DEFINE_string(ri, "", "Reverse stream input wav filename");
42DEFINE_string(ro, "", "Reverse stream output wav filename");
peahdf80fd12016-12-09 02:43:40 -080043DEFINE_string(artificial_nearend, "", "Artificial nearend wav filename");
peah60a189f2016-05-24 20:54:40 -070044DEFINE_int32(output_num_channels,
45 kParameterNotSpecifiedValue,
46 "Number of forward stream output channels");
47DEFINE_int32(reverse_output_num_channels,
48 kParameterNotSpecifiedValue,
49 "Number of Reverse stream output channels");
50DEFINE_int32(output_sample_rate_hz,
51 kParameterNotSpecifiedValue,
52 "Forward stream output sample rate in Hz");
53DEFINE_int32(reverse_output_sample_rate_hz,
54 kParameterNotSpecifiedValue,
55 "Reverse stream output sample rate in Hz");
56DEFINE_string(mic_positions,
57 "",
58 "Space delimited cartesian coordinates of microphones in "
59 "meters. The coordinates of each point are contiguous. For a "
60 "two element array: \"x1 y1 z1 x2 y2 z2\"");
61DEFINE_int32(target_angle_degrees,
62 90,
63 "The azimuth of the target in degrees (0-359). Only applies to "
64 "beamforming.");
65DEFINE_bool(fixed_interface,
66 false,
67 "Use the fixed interface when operating on wav files");
68DEFINE_int32(aec,
69 kParameterNotSpecifiedValue,
70 "Activate (1) or deactivate(0) the echo canceller");
71DEFINE_int32(aecm,
72 kParameterNotSpecifiedValue,
73 "Activate (1) or deactivate(0) the mobile echo controller");
ivoc0bff12a2016-11-17 00:55:43 -080074DEFINE_int32(ed,
ivoc87d1a782016-11-14 07:55:03 -080075 kParameterNotSpecifiedValue,
76 "Activate (1) or deactivate (0) the residual echo detector");
ivoc0bff12a2016-11-17 00:55:43 -080077DEFINE_string(ed_graph, "", "Output filename for graph of echo likelihood");
peah60a189f2016-05-24 20:54:40 -070078DEFINE_int32(agc,
79 kParameterNotSpecifiedValue,
80 "Activate (1) or deactivate(0) the AGC");
81DEFINE_int32(hpf,
82 kParameterNotSpecifiedValue,
83 "Activate (1) or deactivate(0) the high-pass filter");
84DEFINE_int32(ns,
85 kParameterNotSpecifiedValue,
86 "Activate (1) or deactivate(0) the noise suppressor");
87DEFINE_int32(ts,
88 kParameterNotSpecifiedValue,
89 "Activate (1) or deactivate(0) the transient suppressor");
90DEFINE_int32(bf,
91 kParameterNotSpecifiedValue,
92 "Activate (1) or deactivate(0) the beamformer");
93DEFINE_int32(ie,
94 kParameterNotSpecifiedValue,
95 "Activate (1) or deactivate(0) the intelligibility enhancer");
96DEFINE_int32(vad,
97 kParameterNotSpecifiedValue,
98 "Activate (1) or deactivate(0) the voice activity detector");
99DEFINE_int32(le,
100 kParameterNotSpecifiedValue,
101 "Activate (1) or deactivate(0) the level estimator");
102DEFINE_bool(all_default,
103 false,
104 "Activate all of the default components (will be overridden by any "
105 "other settings)");
106DEFINE_int32(aec_suppression_level,
107 kParameterNotSpecifiedValue,
108 "Set the aec suppression level (0-2)");
109DEFINE_int32(delay_agnostic,
110 kParameterNotSpecifiedValue,
111 "Activate (1) or deactivate(0) the AEC delay agnostic mode");
112DEFINE_int32(extended_filter,
113 kParameterNotSpecifiedValue,
114 "Activate (1) or deactivate(0) the AEC extended filter mode");
115DEFINE_int32(drift_compensation,
116 kParameterNotSpecifiedValue,
117 "Activate (1) or deactivate(0) the drift compensation");
118DEFINE_int32(aec3,
119 kParameterNotSpecifiedValue,
120 "Activate (1) or deactivate(0) the experimental AEC mode AEC3");
peahca4cac72016-06-29 15:26:12 -0700121DEFINE_int32(lc,
122 kParameterNotSpecifiedValue,
123 "Activate (1) or deactivate(0) the level control");
peah60a189f2016-05-24 20:54:40 -0700124DEFINE_int32(
125 refined_adaptive_filter,
126 kParameterNotSpecifiedValue,
127 "Activate (1) or deactivate(0) the refined adaptive filter functionality");
128DEFINE_int32(aecm_routing_mode,
129 kParameterNotSpecifiedValue,
130 "Specify the AECM routing mode (0-4)");
131DEFINE_int32(aecm_comfort_noise,
132 kParameterNotSpecifiedValue,
133 "Activate (1) or deactivate(0) the AECM comfort noise");
134DEFINE_int32(agc_mode,
135 kParameterNotSpecifiedValue,
136 "Specify the AGC mode (0-2)");
137DEFINE_int32(agc_target_level,
138 kParameterNotSpecifiedValue,
139 "Specify the AGC target level (0-31)");
140DEFINE_int32(agc_limiter,
141 kParameterNotSpecifiedValue,
142 "Activate (1) or deactivate(0) the level estimator");
143DEFINE_int32(agc_compression_gain,
144 kParameterNotSpecifiedValue,
145 "Specify the AGC compression gain (0-90)");
146DEFINE_int32(vad_likelihood,
147 kParameterNotSpecifiedValue,
148 "Specify the VAD likelihood (0-3)");
149DEFINE_int32(ns_level,
150 kParameterNotSpecifiedValue,
151 "Specify the NS level (0-3)");
152DEFINE_int32(stream_delay,
153 kParameterNotSpecifiedValue,
154 "Specify the stream delay in ms to use");
155DEFINE_int32(stream_drift_samples,
156 kParameterNotSpecifiedValue,
157 "Specify the number of stream drift samples to use");
158DEFINE_bool(performance_report, false, "Report the APM performance ");
159DEFINE_bool(verbose, false, "Produce verbose output");
160DEFINE_bool(bitexactness_report,
161 false,
162 "Report bitexactness for aec dump result reproduction");
163DEFINE_bool(discard_settings_in_aecdump,
164 false,
165 "Discard any config settings specified in the aec dump");
166DEFINE_bool(store_intermediate_output,
167 false,
168 "Creates new output files after each init");
peah5ad5de32016-12-09 03:18:22 -0800169DEFINE_string(custom_call_order_file, "", "Custom process API call order file");
peah60a189f2016-05-24 20:54:40 -0700170
171void SetSettingIfSpecified(const std::string value,
172 rtc::Optional<std::string>* parameter) {
173 if (value.compare("") != 0) {
174 *parameter = rtc::Optional<std::string>(value);
175 }
176}
177
178void SetSettingIfSpecified(int value, rtc::Optional<int>* parameter) {
179 if (value != kParameterNotSpecifiedValue) {
180 *parameter = rtc::Optional<int>(value);
181 }
182}
183
184void SetSettingIfFlagSet(int32_t flag, rtc::Optional<bool>* parameter) {
185 if (flag == 0) {
186 *parameter = rtc::Optional<bool>(false);
187 } else if (flag == 1) {
188 *parameter = rtc::Optional<bool>(true);
189 }
190}
191
192SimulationSettings CreateSettings() {
193 SimulationSettings settings;
194 if (FLAGS_all_default) {
195 settings.use_le = rtc::Optional<bool>(true);
196 settings.use_vad = rtc::Optional<bool>(true);
197 settings.use_ie = rtc::Optional<bool>(false);
198 settings.use_bf = rtc::Optional<bool>(false);
199 settings.use_ts = rtc::Optional<bool>(true);
200 settings.use_ns = rtc::Optional<bool>(true);
201 settings.use_hpf = rtc::Optional<bool>(true);
202 settings.use_agc = rtc::Optional<bool>(true);
203 settings.use_aec = rtc::Optional<bool>(true);
204 settings.use_aecm = rtc::Optional<bool>(false);
ivoc0bff12a2016-11-17 00:55:43 -0800205 settings.use_ed = rtc::Optional<bool>(false);
peah60a189f2016-05-24 20:54:40 -0700206 }
207 SetSettingIfSpecified(FLAGS_dump_input, &settings.aec_dump_input_filename);
208 SetSettingIfSpecified(FLAGS_dump_output, &settings.aec_dump_output_filename);
209 SetSettingIfSpecified(FLAGS_i, &settings.input_filename);
210 SetSettingIfSpecified(FLAGS_o, &settings.output_filename);
211 SetSettingIfSpecified(FLAGS_ri, &settings.reverse_input_filename);
212 SetSettingIfSpecified(FLAGS_ro, &settings.reverse_output_filename);
peahdf80fd12016-12-09 02:43:40 -0800213 SetSettingIfSpecified(FLAGS_artificial_nearend,
214 &settings.artificial_nearend_filename);
peah60a189f2016-05-24 20:54:40 -0700215 SetSettingIfSpecified(FLAGS_output_num_channels,
216 &settings.output_num_channels);
217 SetSettingIfSpecified(FLAGS_reverse_output_num_channels,
218 &settings.reverse_output_num_channels);
219 SetSettingIfSpecified(FLAGS_output_sample_rate_hz,
220 &settings.output_sample_rate_hz);
221 SetSettingIfSpecified(FLAGS_reverse_output_sample_rate_hz,
222 &settings.reverse_output_sample_rate_hz);
223 SetSettingIfSpecified(FLAGS_mic_positions, &settings.microphone_positions);
224 settings.target_angle_degrees = FLAGS_target_angle_degrees;
225 SetSettingIfFlagSet(FLAGS_aec, &settings.use_aec);
226 SetSettingIfFlagSet(FLAGS_aecm, &settings.use_aecm);
ivoc0bff12a2016-11-17 00:55:43 -0800227 SetSettingIfFlagSet(FLAGS_ed, &settings.use_ed);
228 SetSettingIfSpecified(FLAGS_ed_graph, &settings.ed_graph_output_filename);
peah60a189f2016-05-24 20:54:40 -0700229 SetSettingIfFlagSet(FLAGS_agc, &settings.use_agc);
230 SetSettingIfFlagSet(FLAGS_hpf, &settings.use_hpf);
231 SetSettingIfFlagSet(FLAGS_ns, &settings.use_ns);
232 SetSettingIfFlagSet(FLAGS_ts, &settings.use_ts);
233 SetSettingIfFlagSet(FLAGS_bf, &settings.use_bf);
234 SetSettingIfFlagSet(FLAGS_ie, &settings.use_ie);
235 SetSettingIfFlagSet(FLAGS_vad, &settings.use_vad);
236 SetSettingIfFlagSet(FLAGS_le, &settings.use_le);
237 SetSettingIfSpecified(FLAGS_aec_suppression_level,
238 &settings.aec_suppression_level);
239 SetSettingIfFlagSet(FLAGS_delay_agnostic, &settings.use_delay_agnostic);
240 SetSettingIfFlagSet(FLAGS_extended_filter, &settings.use_extended_filter);
241 SetSettingIfFlagSet(FLAGS_drift_compensation,
242 &settings.use_drift_compensation);
243 SetSettingIfFlagSet(FLAGS_refined_adaptive_filter,
244 &settings.use_refined_adaptive_filter);
245
246 SetSettingIfFlagSet(FLAGS_aec3, &settings.use_aec3);
peahca4cac72016-06-29 15:26:12 -0700247 SetSettingIfFlagSet(FLAGS_lc, &settings.use_lc);
peah60a189f2016-05-24 20:54:40 -0700248 SetSettingIfSpecified(FLAGS_aecm_routing_mode, &settings.aecm_routing_mode);
249 SetSettingIfFlagSet(FLAGS_aecm_comfort_noise,
250 &settings.use_aecm_comfort_noise);
251 SetSettingIfSpecified(FLAGS_agc_mode, &settings.agc_mode);
252 SetSettingIfSpecified(FLAGS_agc_target_level, &settings.agc_target_level);
253 SetSettingIfFlagSet(FLAGS_agc_limiter, &settings.use_agc_limiter);
254 SetSettingIfSpecified(FLAGS_agc_compression_gain,
255 &settings.agc_compression_gain);
256 SetSettingIfSpecified(FLAGS_vad_likelihood, &settings.vad_likelihood);
257 SetSettingIfSpecified(FLAGS_ns_level, &settings.ns_level);
258 SetSettingIfSpecified(FLAGS_stream_delay, &settings.stream_delay);
259 SetSettingIfSpecified(FLAGS_stream_drift_samples,
260 &settings.stream_drift_samples);
peah5ad5de32016-12-09 03:18:22 -0800261 SetSettingIfSpecified(FLAGS_custom_call_order_file,
262 &settings.custom_call_order_filename);
peah60a189f2016-05-24 20:54:40 -0700263 settings.report_performance = FLAGS_performance_report;
264 settings.use_verbose_logging = FLAGS_verbose;
265 settings.report_bitexactness = FLAGS_bitexactness_report;
266 settings.discard_all_settings_in_aecdump = FLAGS_discard_settings_in_aecdump;
267 settings.fixed_interface = FLAGS_fixed_interface;
268 settings.store_intermediate_output = FLAGS_store_intermediate_output;
269
270 return settings;
271}
272
273void ReportConditionalErrorAndExit(bool condition, std::string message) {
274 if (condition) {
275 std::cerr << message << std::endl;
276 exit(1);
277 }
278}
279
280void PerformBasicParameterSanityChecks(const SimulationSettings& settings) {
281 if (settings.input_filename || settings.reverse_input_filename) {
282 ReportConditionalErrorAndExit(!!settings.aec_dump_input_filename,
283 "Error: The aec dump cannot be specified "
284 "together with input wav files!\n");
285
peahdf80fd12016-12-09 02:43:40 -0800286 ReportConditionalErrorAndExit(!!settings.artificial_nearend_filename,
287 "Error: The artificial nearend cannot be "
288 "specified together with input wav files!\n");
289
peah60a189f2016-05-24 20:54:40 -0700290 ReportConditionalErrorAndExit(!settings.input_filename,
291 "Error: When operating at wav files, the "
292 "input wav filename must be "
293 "specified!\n");
294
295 ReportConditionalErrorAndExit(
296 settings.reverse_output_filename && !settings.reverse_input_filename,
297 "Error: When operating at wav files, the reverse input wav filename "
298 "must be specified if the reverse output wav filename is specified!\n");
299 } else {
300 ReportConditionalErrorAndExit(!settings.aec_dump_input_filename,
301 "Error: Either the aec dump or the wav "
302 "input files must be specified!\n");
303 }
304
305 ReportConditionalErrorAndExit(
306 settings.use_aec && *settings.use_aec && settings.use_aecm &&
307 *settings.use_aecm,
308 "Error: The AEC and the AECM cannot be activated at the same time!\n");
309
310 ReportConditionalErrorAndExit(
311 settings.output_sample_rate_hz && *settings.output_sample_rate_hz <= 0,
312 "Error: --output_sample_rate_hz must be positive!\n");
313
314 ReportConditionalErrorAndExit(
315 settings.reverse_output_sample_rate_hz &&
316 settings.output_sample_rate_hz &&
317 *settings.output_sample_rate_hz <= 0,
318 "Error: --reverse_output_sample_rate_hz must be positive!\n");
319
320 ReportConditionalErrorAndExit(
321 settings.output_num_channels && *settings.output_num_channels <= 0,
322 "Error: --output_num_channels must be positive!\n");
323
324 ReportConditionalErrorAndExit(
325 settings.reverse_output_num_channels &&
326 *settings.reverse_output_num_channels <= 0,
327 "Error: --reverse_output_num_channels must be positive!\n");
328
329 ReportConditionalErrorAndExit(
330 settings.use_bf && *settings.use_bf && !settings.microphone_positions,
331 "Error: --mic_positions must be specified when the beamformer is "
332 "activated.\n");
333
334 ReportConditionalErrorAndExit(
335 settings.target_angle_degrees < 0 || settings.target_angle_degrees > 359,
336 "Error: -target_angle_degrees must be specified between 0 and 359.\n");
337
338 ReportConditionalErrorAndExit(
339 settings.aec_suppression_level &&
340 ((*settings.aec_suppression_level) < 0 ||
341 (*settings.aec_suppression_level) > 2),
342 "Error: --aec_suppression_level must be specified between 0 and 2.\n");
343
344 ReportConditionalErrorAndExit(
345 settings.aecm_routing_mode && ((*settings.aecm_routing_mode) < 0 ||
346 (*settings.aecm_routing_mode) > 4),
347 "Error: --aecm_routing_mode must be specified between 0 and 4.\n");
348
349 ReportConditionalErrorAndExit(
350 settings.agc_target_level && ((*settings.agc_target_level) < 0 ||
351 (*settings.agc_target_level) > 31),
352 "Error: --agc_target_level must be specified between 0 and 31.\n");
353
354 ReportConditionalErrorAndExit(
355 settings.agc_compression_gain && ((*settings.agc_compression_gain) < 0 ||
356 (*settings.agc_compression_gain) > 90),
357 "Error: --agc_compression_gain must be specified between 0 and 90.\n");
358
359 ReportConditionalErrorAndExit(
360 settings.vad_likelihood &&
361 ((*settings.vad_likelihood) < 0 || (*settings.vad_likelihood) > 3),
362 "Error: --vad_likelihood must be specified between 0 and 3.\n");
363
364 ReportConditionalErrorAndExit(
365 settings.ns_level &&
366 ((*settings.ns_level) < 0 || (*settings.ns_level) > 3),
367 "Error: --ns_level must be specified between 0 and 3.\n");
368
369 ReportConditionalErrorAndExit(
370 settings.report_bitexactness && !settings.aec_dump_input_filename,
371 "Error: --bitexactness_report can only be used when operating on an "
372 "aecdump\n");
373
peah5ad5de32016-12-09 03:18:22 -0800374 ReportConditionalErrorAndExit(
375 settings.custom_call_order_filename && settings.aec_dump_input_filename,
376 "Error: --custom_call_order_file cannot be used when operating on an "
377 "aecdump\n");
378
peah60a189f2016-05-24 20:54:40 -0700379 auto valid_wav_name = [](const std::string& wav_file_name) {
380 if (wav_file_name.size() < 5) {
381 return false;
382 }
383 if ((wav_file_name.compare(wav_file_name.size() - 4, 4, ".wav") == 0) ||
384 (wav_file_name.compare(wav_file_name.size() - 4, 4, ".WAV") == 0)) {
385 return true;
386 }
387 return false;
388 };
389
390 ReportConditionalErrorAndExit(
391 settings.input_filename && (!valid_wav_name(*settings.input_filename)),
392 "Error: --i must be a valid .wav file name.\n");
393
394 ReportConditionalErrorAndExit(
395 settings.output_filename && (!valid_wav_name(*settings.output_filename)),
396 "Error: --o must be a valid .wav file name.\n");
397
398 ReportConditionalErrorAndExit(
399 settings.reverse_input_filename &&
400 (!valid_wav_name(*settings.reverse_input_filename)),
401 "Error: --ri must be a valid .wav file name.\n");
402
403 ReportConditionalErrorAndExit(
404 settings.reverse_output_filename &&
405 (!valid_wav_name(*settings.reverse_output_filename)),
406 "Error: --ro must be a valid .wav file name.\n");
peahdf80fd12016-12-09 02:43:40 -0800407
408 ReportConditionalErrorAndExit(
409 settings.artificial_nearend_filename &&
410 !valid_wav_name(*settings.artificial_nearend_filename),
411 "Error: --artifical_nearend must be a valid .wav file name.\n");
Peter Kasting69558702016-01-12 16:26:35 -0800412}
413
414} // namespace
415
andrew@webrtc.org08df9b22014-12-16 20:57:15 +0000416int main(int argc, char* argv[]) {
peah60a189f2016-05-24 20:54:40 -0700417 google::SetUsageMessage(kUsageDescription);
andrew@webrtc.org08df9b22014-12-16 20:57:15 +0000418 google::ParseCommandLineFlags(&argc, &argv, true);
419
peah60a189f2016-05-24 20:54:40 -0700420 SimulationSettings settings = CreateSettings();
421 PerformBasicParameterSanityChecks(settings);
422 std::unique_ptr<AudioProcessingSimulator> processor;
andrew@webrtc.org08df9b22014-12-16 20:57:15 +0000423
peah60a189f2016-05-24 20:54:40 -0700424 if (settings.aec_dump_input_filename) {
425 processor.reset(new AecDumpBasedSimulator(settings));
aluebsb0ad43b2015-11-20 00:11:53 -0800426 } else {
peah60a189f2016-05-24 20:54:40 -0700427 processor.reset(new WavBasedSimulator(settings));
andrewbdafe312015-10-29 23:42:54 -0700428 }
429
peah60a189f2016-05-24 20:54:40 -0700430 processor->Process();
aluebsb0ad43b2015-11-20 00:11:53 -0800431
peah60a189f2016-05-24 20:54:40 -0700432 if (settings.report_performance) {
aluebsb0ad43b2015-11-20 00:11:53 -0800433 const auto& proc_time = processor->proc_time();
Niels Möllerd28db7f2016-05-10 16:31:47 +0200434 int64_t exec_time_us = proc_time.sum / rtc::kNumNanosecsPerMicrosec;
peah60a189f2016-05-24 20:54:40 -0700435 std::cout << std::endl
436 << "Execution time: " << exec_time_us * 1e-6 << " s, File time: "
437 << processor->get_num_process_stream_calls() * 1.f /
438 AudioProcessingSimulator::kChunksPerSecond
439 << std::endl
440 << "Time per fwd stream chunk (mean, max, min): " << std::endl
441 << exec_time_us * 1.f / processor->get_num_process_stream_calls()
442 << " us, " << 1.f * proc_time.max / rtc::kNumNanosecsPerMicrosec
443 << " us, " << 1.f * proc_time.min / rtc::kNumNanosecsPerMicrosec
444 << " us" << std::endl;
445 }
446
447 if (settings.report_bitexactness && settings.aec_dump_input_filename) {
448 if (processor->OutputWasBitexact()) {
449 std::cout << "The processing was bitexact.";
450 } else {
451 std::cout << "The processing was not bitexact.";
452 }
Alejandro Luebs5d22c002015-04-15 11:26:40 -0700453 }
aluebsb0ad43b2015-11-20 00:11:53 -0800454
andrew@webrtc.org08df9b22014-12-16 20:57:15 +0000455 return 0;
456}
457
peah60a189f2016-05-24 20:54:40 -0700458} // namespace test
andrew@webrtc.org08df9b22014-12-16 20:57:15 +0000459} // namespace webrtc
460
461int main(int argc, char* argv[]) {
peah60a189f2016-05-24 20:54:40 -0700462 return webrtc::test::main(argc, argv);
andrew@webrtc.org08df9b22014-12-16 20:57:15 +0000463}