blob: 4c75608e7488a60435fc11cf14489666a28c63ca [file] [log] [blame]
andrew@webrtc.orgcb181212011-10-26 00:27:17 +00001/*
2 * Copyright (c) 2011 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
11// Commandline tool to unpack audioproc debug files.
12//
13// The debug files are dumped as protobuf blobs. For analysis, it's necessary
14// to unpack the file into its component parts: audio and other data.
15
16#include <stdio.h>
17
kwiberg62eaacf2016-02-17 06:39:05 -080018#include <memory>
19
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "modules/audio_processing/test/protobuf_utils.h"
21#include "modules/audio_processing/test/test_utils.h"
22#include "rtc_base/flags.h"
23#include "rtc_base/format_macros.h"
24#include "rtc_base/ignore_wundef.h"
Jonas Olsson366a50c2018-09-06 13:41:30 +020025#include "rtc_base/strings/string_builder.h"
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000026
kwiberg77eab702016-09-28 17:42:01 -070027RTC_PUSH_IGNORING_WUNDEF()
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020028#include "modules/audio_processing/debug.pb.h"
kwiberg77eab702016-09-28 17:42:01 -070029RTC_POP_IGNORING_WUNDEF()
30
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000031// TODO(andrew): unpack more of the data.
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +000032DEFINE_string(input_file, "input", "The name of the input stream file.");
Yves Gerey665174f2018-06-19 15:03:05 +020033DEFINE_string(output_file,
34 "ref_out",
andrew@webrtc.orgcd824382011-11-11 19:13:36 +000035 "The name of the reference output stream file.");
Yves Gerey665174f2018-06-19 15:03:05 +020036DEFINE_string(reverse_file,
37 "reverse",
andrew@webrtc.orgcd824382011-11-11 19:13:36 +000038 "The name of the reverse input stream file.");
39DEFINE_string(delay_file, "delay.int32", "The name of the delay file.");
40DEFINE_string(drift_file, "drift.int32", "The name of the drift file.");
41DEFINE_string(level_file, "level.int32", "The name of the level file.");
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +000042DEFINE_string(keypress_file, "keypress.bool", "The name of the keypress file.");
Sam Zackrissonf61475d2018-05-11 11:34:49 +020043DEFINE_string(callorder_file,
44 "callorder",
45 "The name of the render/capture call order file.");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +000046DEFINE_string(settings_file, "settings.txt", "The name of the settings file.");
Yves Gerey665174f2018-06-19 15:03:05 +020047DEFINE_bool(full, false, "Unpack the full set of files (normally not needed).");
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +000048DEFINE_bool(raw, false, "Write raw data instead of a WAV file.");
Bjorn Volcker40a6d592015-05-06 10:51:34 +020049DEFINE_bool(text,
50 false,
51 "Write non-audio files as text files instead of binary files.");
oprypin6e09d872017-08-31 03:21:39 -070052DEFINE_bool(help, false, "Print this message.");
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000053
Yves Gerey665174f2018-06-19 15:03:05 +020054#define PRINT_CONFIG(field_name) \
55 if (msg.has_##field_name()) { \
Minyue13b96ba2015-10-03 00:39:14 +020056 fprintf(settings_file, " " #field_name ": %d\n", msg.field_name()); \
57 }
58
Alex Loiko5feb30e2018-04-16 13:52:32 +020059#define PRINT_CONFIG_FLOAT(field_name) \
60 if (msg.has_##field_name()) { \
61 fprintf(settings_file, " " #field_name ": %f\n", msg.field_name()); \
62 }
63
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000064namespace webrtc {
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000065
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000066using audioproc::Event;
67using audioproc::ReverseStream;
68using audioproc::Stream;
69using audioproc::Init;
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000070
Sam Zackrissonf61475d2018-05-11 11:34:49 +020071namespace {
72
Yves Gerey665174f2018-06-19 15:03:05 +020073void WriteData(const void* data,
74 size_t size,
75 FILE* file,
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000076 const std::string& filename) {
77 if (fwrite(data, size, 1, file) != 1) {
78 printf("Error when writing to %s\n", filename.c_str());
79 exit(1);
80 }
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000081}
82
Sam Zackrissonf61475d2018-05-11 11:34:49 +020083void WriteCallOrderData(const bool render_call,
84 FILE* file,
85 const std::string& filename) {
86 const char call_type = render_call ? 'r' : 'c';
87 WriteData(&call_type, sizeof(call_type), file, filename.c_str());
88}
89
90} // namespace
91
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000092int do_main(int argc, char* argv[]) {
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000093 std::string program_name = argv[0];
Yves Gerey665174f2018-06-19 15:03:05 +020094 std::string usage =
95 "Commandline tool to unpack audioproc debug files.\n"
96 "Example usage:\n" +
97 program_name + " debug_dump.pb\n";
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000098
Yves Gerey665174f2018-06-19 15:03:05 +020099 if (rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true) || FLAG_help ||
100 argc < 2) {
oprypin6e09d872017-08-31 03:21:39 -0700101 printf("%s", usage.c_str());
102 if (FLAG_help) {
103 rtc::FlagList::Print(nullptr, false);
104 return 0;
105 }
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000106 return 1;
107 }
108
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000109 FILE* debug_file = OpenFile(argv[1], "rb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000110
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000111 Event event_msg;
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000112 int frame_count = 0;
pkasting25702cb2016-01-08 13:50:27 -0800113 size_t reverse_samples_per_channel = 0;
114 size_t input_samples_per_channel = 0;
115 size_t output_samples_per_channel = 0;
Peter Kasting69558702016-01-12 16:26:35 -0800116 size_t num_reverse_channels = 0;
117 size_t num_input_channels = 0;
118 size_t num_output_channels = 0;
kwiberg62eaacf2016-02-17 06:39:05 -0800119 std::unique_ptr<WavWriter> reverse_wav_file;
120 std::unique_ptr<WavWriter> input_wav_file;
121 std::unique_ptr<WavWriter> output_wav_file;
122 std::unique_ptr<RawFile> reverse_raw_file;
123 std::unique_ptr<RawFile> input_raw_file;
124 std::unique_ptr<RawFile> output_raw_file;
Minyue13b96ba2015-10-03 00:39:14 +0200125
Jonas Olsson366a50c2018-09-06 13:41:30 +0200126 rtc::StringBuilder callorder_raw_name;
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200127 callorder_raw_name << FLAG_callorder_file << ".char";
128 FILE* callorder_char_file = OpenFile(callorder_raw_name.str(), "wb");
oprypin6e09d872017-08-31 03:21:39 -0700129 FILE* settings_file = OpenFile(FLAG_settings_file, "wb");
Minyue13b96ba2015-10-03 00:39:14 +0200130
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000131 while (ReadMessageFromFile(debug_file, &event_msg)) {
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000132 if (event_msg.type() == Event::REVERSE_STREAM) {
133 if (!event_msg.has_reverse_stream()) {
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000134 printf("Corrupt input file: ReverseStream missing.\n");
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000135 return 1;
136 }
137
138 const ReverseStream msg = event_msg.reverse_stream();
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000139 if (msg.has_data()) {
oprypin6e09d872017-08-31 03:21:39 -0700140 if (FLAG_raw && !reverse_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200141 reverse_raw_file.reset(
142 new RawFile(std::string(FLAG_reverse_file) + ".pcm"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000143 }
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000144 // TODO(aluebs): Replace "num_reverse_channels *
145 // reverse_samples_per_channel" with "msg.data().size() /
146 // sizeof(int16_t)" and so on when this fix in audio_processing has made
147 // it into stable: https://webrtc-codereview.appspot.com/15299004/
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000148 WriteIntData(reinterpret_cast<const int16_t*>(msg.data().data()),
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000149 num_reverse_channels * reverse_samples_per_channel,
Yves Gerey665174f2018-06-19 15:03:05 +0200150 reverse_wav_file.get(), reverse_raw_file.get());
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000151 } else if (msg.channel_size() > 0) {
oprypin6e09d872017-08-31 03:21:39 -0700152 if (FLAG_raw && !reverse_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200153 reverse_raw_file.reset(
154 new RawFile(std::string(FLAG_reverse_file) + ".float"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000155 }
kwiberg62eaacf2016-02-17 06:39:05 -0800156 std::unique_ptr<const float* []> data(
Yves Gerey665174f2018-06-19 15:03:05 +0200157 new const float*[num_reverse_channels]);
Peter Kasting69558702016-01-12 16:26:35 -0800158 for (size_t i = 0; i < num_reverse_channels; ++i) {
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000159 data[i] = reinterpret_cast<const float*>(msg.channel(i).data());
160 }
Yves Gerey665174f2018-06-19 15:03:05 +0200161 WriteFloatData(data.get(), reverse_samples_per_channel,
162 num_reverse_channels, reverse_wav_file.get(),
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000163 reverse_raw_file.get());
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000164 }
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200165 if (FLAG_full) {
166 WriteCallOrderData(true /* render_call */, callorder_char_file,
167 FLAG_callorder_file);
168 }
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000169 } else if (event_msg.type() == Event::STREAM) {
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000170 frame_count++;
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000171 if (!event_msg.has_stream()) {
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000172 printf("Corrupt input file: Stream missing.\n");
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000173 return 1;
174 }
175
176 const Stream msg = event_msg.stream();
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000177 if (msg.has_input_data()) {
oprypin6e09d872017-08-31 03:21:39 -0700178 if (FLAG_raw && !input_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200179 input_raw_file.reset(
180 new RawFile(std::string(FLAG_input_file) + ".pcm"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000181 }
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000182 WriteIntData(reinterpret_cast<const int16_t*>(msg.input_data().data()),
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000183 num_input_channels * input_samples_per_channel,
Yves Gerey665174f2018-06-19 15:03:05 +0200184 input_wav_file.get(), input_raw_file.get());
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000185 } else if (msg.input_channel_size() > 0) {
oprypin6e09d872017-08-31 03:21:39 -0700186 if (FLAG_raw && !input_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200187 input_raw_file.reset(
188 new RawFile(std::string(FLAG_input_file) + ".float"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000189 }
kwiberg62eaacf2016-02-17 06:39:05 -0800190 std::unique_ptr<const float* []> data(
Yves Gerey665174f2018-06-19 15:03:05 +0200191 new const float*[num_input_channels]);
Peter Kasting69558702016-01-12 16:26:35 -0800192 for (size_t i = 0; i < num_input_channels; ++i) {
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000193 data[i] = reinterpret_cast<const float*>(msg.input_channel(i).data());
194 }
Yves Gerey665174f2018-06-19 15:03:05 +0200195 WriteFloatData(data.get(), input_samples_per_channel,
196 num_input_channels, input_wav_file.get(),
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000197 input_raw_file.get());
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000198 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000199
200 if (msg.has_output_data()) {
oprypin6e09d872017-08-31 03:21:39 -0700201 if (FLAG_raw && !output_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200202 output_raw_file.reset(
203 new RawFile(std::string(FLAG_output_file) + ".pcm"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000204 }
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000205 WriteIntData(reinterpret_cast<const int16_t*>(msg.output_data().data()),
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000206 num_output_channels * output_samples_per_channel,
Yves Gerey665174f2018-06-19 15:03:05 +0200207 output_wav_file.get(), output_raw_file.get());
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000208 } else if (msg.output_channel_size() > 0) {
oprypin6e09d872017-08-31 03:21:39 -0700209 if (FLAG_raw && !output_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200210 output_raw_file.reset(
211 new RawFile(std::string(FLAG_output_file) + ".float"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000212 }
kwiberg62eaacf2016-02-17 06:39:05 -0800213 std::unique_ptr<const float* []> data(
Yves Gerey665174f2018-06-19 15:03:05 +0200214 new const float*[num_output_channels]);
Peter Kasting69558702016-01-12 16:26:35 -0800215 for (size_t i = 0; i < num_output_channels; ++i) {
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000216 data[i] =
217 reinterpret_cast<const float*>(msg.output_channel(i).data());
218 }
Yves Gerey665174f2018-06-19 15:03:05 +0200219 WriteFloatData(data.get(), output_samples_per_channel,
220 num_output_channels, output_wav_file.get(),
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000221 output_raw_file.get());
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000222 }
223
oprypin6e09d872017-08-31 03:21:39 -0700224 if (FLAG_full) {
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200225 WriteCallOrderData(false /* render_call */, callorder_char_file,
226 FLAG_callorder_file);
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000227 if (msg.has_delay()) {
oprypin6e09d872017-08-31 03:21:39 -0700228 static FILE* delay_file = OpenFile(FLAG_delay_file, "wb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000229 int32_t delay = msg.delay();
oprypin6e09d872017-08-31 03:21:39 -0700230 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200231 fprintf(delay_file, "%d\n", delay);
232 } else {
oprypin6e09d872017-08-31 03:21:39 -0700233 WriteData(&delay, sizeof(delay), delay_file, FLAG_delay_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200234 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000235 }
236
237 if (msg.has_drift()) {
oprypin6e09d872017-08-31 03:21:39 -0700238 static FILE* drift_file = OpenFile(FLAG_drift_file, "wb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000239 int32_t drift = msg.drift();
oprypin6e09d872017-08-31 03:21:39 -0700240 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200241 fprintf(drift_file, "%d\n", drift);
242 } else {
oprypin6e09d872017-08-31 03:21:39 -0700243 WriteData(&drift, sizeof(drift), drift_file, FLAG_drift_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200244 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000245 }
246
247 if (msg.has_level()) {
oprypin6e09d872017-08-31 03:21:39 -0700248 static FILE* level_file = OpenFile(FLAG_level_file, "wb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000249 int32_t level = msg.level();
oprypin6e09d872017-08-31 03:21:39 -0700250 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200251 fprintf(level_file, "%d\n", level);
252 } else {
oprypin6e09d872017-08-31 03:21:39 -0700253 WriteData(&level, sizeof(level), level_file, FLAG_level_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200254 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000255 }
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +0000256
257 if (msg.has_keypress()) {
oprypin6e09d872017-08-31 03:21:39 -0700258 static FILE* keypress_file = OpenFile(FLAG_keypress_file, "wb");
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +0000259 bool keypress = msg.keypress();
oprypin6e09d872017-08-31 03:21:39 -0700260 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200261 fprintf(keypress_file, "%d\n", keypress);
262 } else {
263 WriteData(&keypress, sizeof(keypress), keypress_file,
oprypin6e09d872017-08-31 03:21:39 -0700264 FLAG_keypress_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200265 }
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +0000266 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000267 }
Minyue13b96ba2015-10-03 00:39:14 +0200268 } else if (event_msg.type() == Event::CONFIG) {
269 if (!event_msg.has_config()) {
270 printf("Corrupt input file: Config missing.\n");
271 return 1;
272 }
273 const audioproc::Config msg = event_msg.config();
274
275 fprintf(settings_file, "APM re-config at frame: %d\n", frame_count);
276
277 PRINT_CONFIG(aec_enabled);
278 PRINT_CONFIG(aec_delay_agnostic_enabled);
279 PRINT_CONFIG(aec_drift_compensation_enabled);
280 PRINT_CONFIG(aec_extended_filter_enabled);
281 PRINT_CONFIG(aec_suppression_level);
282 PRINT_CONFIG(aecm_enabled);
283 PRINT_CONFIG(aecm_comfort_noise_enabled);
284 PRINT_CONFIG(aecm_routing_mode);
285 PRINT_CONFIG(agc_enabled);
286 PRINT_CONFIG(agc_mode);
287 PRINT_CONFIG(agc_limiter_enabled);
288 PRINT_CONFIG(noise_robust_agc_enabled);
289 PRINT_CONFIG(hpf_enabled);
290 PRINT_CONFIG(ns_enabled);
291 PRINT_CONFIG(ns_level);
292 PRINT_CONFIG(transient_suppression_enabled);
Alex Loiko5feb30e2018-04-16 13:52:32 +0200293 PRINT_CONFIG(pre_amplifier_enabled);
294 PRINT_CONFIG_FLOAT(pre_amplifier_fixed_gain_factor);
295
peah7789fe72016-04-15 01:19:44 -0700296 if (msg.has_experiments_description()) {
297 fprintf(settings_file, " experiments_description: %s\n",
298 msg.experiments_description().c_str());
299 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000300 } else if (event_msg.type() == Event::INIT) {
301 if (!event_msg.has_init()) {
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000302 printf("Corrupt input file: Init missing.\n");
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000303 return 1;
304 }
305
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000306 const Init msg = event_msg.init();
307 // These should print out zeros if they're missing.
308 fprintf(settings_file, "Init at frame: %d\n", frame_count);
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000309 int input_sample_rate = msg.sample_rate();
310 fprintf(settings_file, " Input sample rate: %d\n", input_sample_rate);
311 int output_sample_rate = msg.output_sample_rate();
312 fprintf(settings_file, " Output sample rate: %d\n", output_sample_rate);
313 int reverse_sample_rate = msg.reverse_sample_rate();
Yves Gerey665174f2018-06-19 15:03:05 +0200314 fprintf(settings_file, " Reverse sample rate: %d\n",
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000315 reverse_sample_rate);
316 num_input_channels = msg.num_input_channels();
Peter Kasting69558702016-01-12 16:26:35 -0800317 fprintf(settings_file, " Input channels: %" PRIuS "\n",
318 num_input_channels);
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000319 num_output_channels = msg.num_output_channels();
Peter Kasting69558702016-01-12 16:26:35 -0800320 fprintf(settings_file, " Output channels: %" PRIuS "\n",
321 num_output_channels);
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000322 num_reverse_channels = msg.num_reverse_channels();
Peter Kasting69558702016-01-12 16:26:35 -0800323 fprintf(settings_file, " Reverse channels: %" PRIuS "\n",
324 num_reverse_channels);
Minyue Li656d6092018-08-10 15:38:52 +0200325 if (msg.has_timestamp_ms()) {
326 const int64_t timestamp = msg.timestamp_ms();
327 fprintf(settings_file, " Timestamp in millisecond: %" PRId64 "\n",
328 timestamp);
329 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000330
331 fprintf(settings_file, "\n");
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000332
333 if (reverse_sample_rate == 0) {
334 reverse_sample_rate = input_sample_rate;
335 }
336 if (output_sample_rate == 0) {
337 output_sample_rate = input_sample_rate;
338 }
339
pkasting25702cb2016-01-08 13:50:27 -0800340 reverse_samples_per_channel =
341 static_cast<size_t>(reverse_sample_rate / 100);
Yves Gerey665174f2018-06-19 15:03:05 +0200342 input_samples_per_channel = static_cast<size_t>(input_sample_rate / 100);
pkasting25702cb2016-01-08 13:50:27 -0800343 output_samples_per_channel =
344 static_cast<size_t>(output_sample_rate / 100);
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000345
oprypin6e09d872017-08-31 03:21:39 -0700346 if (!FLAG_raw) {
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000347 // The WAV files need to be reset every time, because they cant change
348 // their sample rate or number of channels.
Jonas Olsson366a50c2018-09-06 13:41:30 +0200349 rtc::StringBuilder reverse_name;
oprypin6e09d872017-08-31 03:21:39 -0700350 reverse_name << FLAG_reverse_file << frame_count << ".wav";
Yves Gerey665174f2018-06-19 15:03:05 +0200351 reverse_wav_file.reset(new WavWriter(
352 reverse_name.str(), reverse_sample_rate, num_reverse_channels));
Jonas Olsson366a50c2018-09-06 13:41:30 +0200353 rtc::StringBuilder input_name;
oprypin6e09d872017-08-31 03:21:39 -0700354 input_name << FLAG_input_file << frame_count << ".wav";
Yves Gerey665174f2018-06-19 15:03:05 +0200355 input_wav_file.reset(new WavWriter(input_name.str(), input_sample_rate,
andrew@webrtc.orga3ed7132014-10-31 21:51:03 +0000356 num_input_channels));
Jonas Olsson366a50c2018-09-06 13:41:30 +0200357 rtc::StringBuilder output_name;
oprypin6e09d872017-08-31 03:21:39 -0700358 output_name << FLAG_output_file << frame_count << ".wav";
Yves Gerey665174f2018-06-19 15:03:05 +0200359 output_wav_file.reset(new WavWriter(
360 output_name.str(), output_sample_rate, num_output_channels));
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200361
Jonas Olsson366a50c2018-09-06 13:41:30 +0200362 rtc::StringBuilder callorder_name;
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200363 callorder_name << FLAG_callorder_file << frame_count << ".char";
364 callorder_char_file = OpenFile(callorder_name.str(), "wb");
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000365 }
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000366 }
367 }
368
369 return 0;
370}
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000371
372} // namespace webrtc
373
374int main(int argc, char* argv[]) {
375 return webrtc::do_main(argc, argv);
376}