blob: 44f8346af014a130c9d901c3240a911d87ba3706 [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"
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000025
kwiberg77eab702016-09-28 17:42:01 -070026RTC_PUSH_IGNORING_WUNDEF()
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020027#include "modules/audio_processing/debug.pb.h"
kwiberg77eab702016-09-28 17:42:01 -070028RTC_POP_IGNORING_WUNDEF()
29
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000030// TODO(andrew): unpack more of the data.
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +000031DEFINE_string(input_file, "input", "The name of the input stream file.");
Yves Gerey665174f2018-06-19 15:03:05 +020032DEFINE_string(output_file,
33 "ref_out",
andrew@webrtc.orgcd824382011-11-11 19:13:36 +000034 "The name of the reference output stream file.");
Yves Gerey665174f2018-06-19 15:03:05 +020035DEFINE_string(reverse_file,
36 "reverse",
andrew@webrtc.orgcd824382011-11-11 19:13:36 +000037 "The name of the reverse input stream file.");
38DEFINE_string(delay_file, "delay.int32", "The name of the delay file.");
39DEFINE_string(drift_file, "drift.int32", "The name of the drift file.");
40DEFINE_string(level_file, "level.int32", "The name of the level file.");
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +000041DEFINE_string(keypress_file, "keypress.bool", "The name of the keypress file.");
Sam Zackrissonf61475d2018-05-11 11:34:49 +020042DEFINE_string(callorder_file,
43 "callorder",
44 "The name of the render/capture call order file.");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +000045DEFINE_string(settings_file, "settings.txt", "The name of the settings file.");
Yves Gerey665174f2018-06-19 15:03:05 +020046DEFINE_bool(full, false, "Unpack the full set of files (normally not needed).");
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +000047DEFINE_bool(raw, false, "Write raw data instead of a WAV file.");
Bjorn Volcker40a6d592015-05-06 10:51:34 +020048DEFINE_bool(text,
49 false,
50 "Write non-audio files as text files instead of binary files.");
oprypin6e09d872017-08-31 03:21:39 -070051DEFINE_bool(help, false, "Print this message.");
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000052
Yves Gerey665174f2018-06-19 15:03:05 +020053#define PRINT_CONFIG(field_name) \
54 if (msg.has_##field_name()) { \
Minyue13b96ba2015-10-03 00:39:14 +020055 fprintf(settings_file, " " #field_name ": %d\n", msg.field_name()); \
56 }
57
Alex Loiko5feb30e2018-04-16 13:52:32 +020058#define PRINT_CONFIG_FLOAT(field_name) \
59 if (msg.has_##field_name()) { \
60 fprintf(settings_file, " " #field_name ": %f\n", msg.field_name()); \
61 }
62
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000063namespace webrtc {
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000064
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000065using audioproc::Event;
66using audioproc::ReverseStream;
67using audioproc::Stream;
68using audioproc::Init;
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000069
Sam Zackrissonf61475d2018-05-11 11:34:49 +020070namespace {
71
Yves Gerey665174f2018-06-19 15:03:05 +020072void WriteData(const void* data,
73 size_t size,
74 FILE* file,
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000075 const std::string& filename) {
76 if (fwrite(data, size, 1, file) != 1) {
77 printf("Error when writing to %s\n", filename.c_str());
78 exit(1);
79 }
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000080}
81
Sam Zackrissonf61475d2018-05-11 11:34:49 +020082void WriteCallOrderData(const bool render_call,
83 FILE* file,
84 const std::string& filename) {
85 const char call_type = render_call ? 'r' : 'c';
86 WriteData(&call_type, sizeof(call_type), file, filename.c_str());
87}
88
89} // namespace
90
andrew@webrtc.orga8b97372014-03-10 22:26:12 +000091int do_main(int argc, char* argv[]) {
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000092 std::string program_name = argv[0];
Yves Gerey665174f2018-06-19 15:03:05 +020093 std::string usage =
94 "Commandline tool to unpack audioproc debug files.\n"
95 "Example usage:\n" +
96 program_name + " debug_dump.pb\n";
andrew@webrtc.orgcb181212011-10-26 00:27:17 +000097
Yves Gerey665174f2018-06-19 15:03:05 +020098 if (rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true) || FLAG_help ||
99 argc < 2) {
oprypin6e09d872017-08-31 03:21:39 -0700100 printf("%s", usage.c_str());
101 if (FLAG_help) {
102 rtc::FlagList::Print(nullptr, false);
103 return 0;
104 }
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000105 return 1;
106 }
107
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000108 FILE* debug_file = OpenFile(argv[1], "rb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000109
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000110 Event event_msg;
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000111 int frame_count = 0;
pkasting25702cb2016-01-08 13:50:27 -0800112 size_t reverse_samples_per_channel = 0;
113 size_t input_samples_per_channel = 0;
114 size_t output_samples_per_channel = 0;
Peter Kasting69558702016-01-12 16:26:35 -0800115 size_t num_reverse_channels = 0;
116 size_t num_input_channels = 0;
117 size_t num_output_channels = 0;
kwiberg62eaacf2016-02-17 06:39:05 -0800118 std::unique_ptr<WavWriter> reverse_wav_file;
119 std::unique_ptr<WavWriter> input_wav_file;
120 std::unique_ptr<WavWriter> output_wav_file;
121 std::unique_ptr<RawFile> reverse_raw_file;
122 std::unique_ptr<RawFile> input_raw_file;
123 std::unique_ptr<RawFile> output_raw_file;
Minyue13b96ba2015-10-03 00:39:14 +0200124
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200125 std::stringstream callorder_raw_name;
126 callorder_raw_name << FLAG_callorder_file << ".char";
127 FILE* callorder_char_file = OpenFile(callorder_raw_name.str(), "wb");
oprypin6e09d872017-08-31 03:21:39 -0700128 FILE* settings_file = OpenFile(FLAG_settings_file, "wb");
Minyue13b96ba2015-10-03 00:39:14 +0200129
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000130 while (ReadMessageFromFile(debug_file, &event_msg)) {
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000131 if (event_msg.type() == Event::REVERSE_STREAM) {
132 if (!event_msg.has_reverse_stream()) {
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000133 printf("Corrupt input file: ReverseStream missing.\n");
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000134 return 1;
135 }
136
137 const ReverseStream msg = event_msg.reverse_stream();
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000138 if (msg.has_data()) {
oprypin6e09d872017-08-31 03:21:39 -0700139 if (FLAG_raw && !reverse_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200140 reverse_raw_file.reset(
141 new RawFile(std::string(FLAG_reverse_file) + ".pcm"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000142 }
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000143 // TODO(aluebs): Replace "num_reverse_channels *
144 // reverse_samples_per_channel" with "msg.data().size() /
145 // sizeof(int16_t)" and so on when this fix in audio_processing has made
146 // it into stable: https://webrtc-codereview.appspot.com/15299004/
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000147 WriteIntData(reinterpret_cast<const int16_t*>(msg.data().data()),
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000148 num_reverse_channels * reverse_samples_per_channel,
Yves Gerey665174f2018-06-19 15:03:05 +0200149 reverse_wav_file.get(), reverse_raw_file.get());
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000150 } else if (msg.channel_size() > 0) {
oprypin6e09d872017-08-31 03:21:39 -0700151 if (FLAG_raw && !reverse_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200152 reverse_raw_file.reset(
153 new RawFile(std::string(FLAG_reverse_file) + ".float"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000154 }
kwiberg62eaacf2016-02-17 06:39:05 -0800155 std::unique_ptr<const float* []> data(
Yves Gerey665174f2018-06-19 15:03:05 +0200156 new const float*[num_reverse_channels]);
Peter Kasting69558702016-01-12 16:26:35 -0800157 for (size_t i = 0; i < num_reverse_channels; ++i) {
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000158 data[i] = reinterpret_cast<const float*>(msg.channel(i).data());
159 }
Yves Gerey665174f2018-06-19 15:03:05 +0200160 WriteFloatData(data.get(), reverse_samples_per_channel,
161 num_reverse_channels, reverse_wav_file.get(),
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000162 reverse_raw_file.get());
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000163 }
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200164 if (FLAG_full) {
165 WriteCallOrderData(true /* render_call */, callorder_char_file,
166 FLAG_callorder_file);
167 }
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000168 } else if (event_msg.type() == Event::STREAM) {
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000169 frame_count++;
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000170 if (!event_msg.has_stream()) {
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000171 printf("Corrupt input file: Stream missing.\n");
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000172 return 1;
173 }
174
175 const Stream msg = event_msg.stream();
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000176 if (msg.has_input_data()) {
oprypin6e09d872017-08-31 03:21:39 -0700177 if (FLAG_raw && !input_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200178 input_raw_file.reset(
179 new RawFile(std::string(FLAG_input_file) + ".pcm"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000180 }
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000181 WriteIntData(reinterpret_cast<const int16_t*>(msg.input_data().data()),
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000182 num_input_channels * input_samples_per_channel,
Yves Gerey665174f2018-06-19 15:03:05 +0200183 input_wav_file.get(), input_raw_file.get());
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000184 } else if (msg.input_channel_size() > 0) {
oprypin6e09d872017-08-31 03:21:39 -0700185 if (FLAG_raw && !input_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200186 input_raw_file.reset(
187 new RawFile(std::string(FLAG_input_file) + ".float"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000188 }
kwiberg62eaacf2016-02-17 06:39:05 -0800189 std::unique_ptr<const float* []> data(
Yves Gerey665174f2018-06-19 15:03:05 +0200190 new const float*[num_input_channels]);
Peter Kasting69558702016-01-12 16:26:35 -0800191 for (size_t i = 0; i < num_input_channels; ++i) {
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000192 data[i] = reinterpret_cast<const float*>(msg.input_channel(i).data());
193 }
Yves Gerey665174f2018-06-19 15:03:05 +0200194 WriteFloatData(data.get(), input_samples_per_channel,
195 num_input_channels, input_wav_file.get(),
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000196 input_raw_file.get());
andrew@webrtc.orgcb181212011-10-26 00:27:17 +0000197 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000198
199 if (msg.has_output_data()) {
oprypin6e09d872017-08-31 03:21:39 -0700200 if (FLAG_raw && !output_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200201 output_raw_file.reset(
202 new RawFile(std::string(FLAG_output_file) + ".pcm"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000203 }
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000204 WriteIntData(reinterpret_cast<const int16_t*>(msg.output_data().data()),
aluebs@webrtc.orgbac07262014-09-03 13:39:01 +0000205 num_output_channels * output_samples_per_channel,
Yves Gerey665174f2018-06-19 15:03:05 +0200206 output_wav_file.get(), output_raw_file.get());
andrew@webrtc.orga8b97372014-03-10 22:26:12 +0000207 } else if (msg.output_channel_size() > 0) {
oprypin6e09d872017-08-31 03:21:39 -0700208 if (FLAG_raw && !output_raw_file) {
Yves Gerey665174f2018-06-19 15:03:05 +0200209 output_raw_file.reset(
210 new RawFile(std::string(FLAG_output_file) + ".float"));
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000211 }
kwiberg62eaacf2016-02-17 06:39:05 -0800212 std::unique_ptr<const float* []> data(
Yves Gerey665174f2018-06-19 15:03:05 +0200213 new const float*[num_output_channels]);
Peter Kasting69558702016-01-12 16:26:35 -0800214 for (size_t i = 0; i < num_output_channels; ++i) {
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +0000215 data[i] =
216 reinterpret_cast<const float*>(msg.output_channel(i).data());
217 }
Yves Gerey665174f2018-06-19 15:03:05 +0200218 WriteFloatData(data.get(), output_samples_per_channel,
219 num_output_channels, output_wav_file.get(),
aluebs@webrtc.org021e76f2014-09-04 18:12:00 +0000220 output_raw_file.get());
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000221 }
222
oprypin6e09d872017-08-31 03:21:39 -0700223 if (FLAG_full) {
Sam Zackrissonf61475d2018-05-11 11:34:49 +0200224 WriteCallOrderData(false /* render_call */, callorder_char_file,
225 FLAG_callorder_file);
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000226 if (msg.has_delay()) {
oprypin6e09d872017-08-31 03:21:39 -0700227 static FILE* delay_file = OpenFile(FLAG_delay_file, "wb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000228 int32_t delay = msg.delay();
oprypin6e09d872017-08-31 03:21:39 -0700229 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200230 fprintf(delay_file, "%d\n", delay);
231 } else {
oprypin6e09d872017-08-31 03:21:39 -0700232 WriteData(&delay, sizeof(delay), delay_file, FLAG_delay_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200233 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000234 }
235
236 if (msg.has_drift()) {
oprypin6e09d872017-08-31 03:21:39 -0700237 static FILE* drift_file = OpenFile(FLAG_drift_file, "wb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000238 int32_t drift = msg.drift();
oprypin6e09d872017-08-31 03:21:39 -0700239 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200240 fprintf(drift_file, "%d\n", drift);
241 } else {
oprypin6e09d872017-08-31 03:21:39 -0700242 WriteData(&drift, sizeof(drift), drift_file, FLAG_drift_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200243 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000244 }
245
246 if (msg.has_level()) {
oprypin6e09d872017-08-31 03:21:39 -0700247 static FILE* level_file = OpenFile(FLAG_level_file, "wb");
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000248 int32_t level = msg.level();
oprypin6e09d872017-08-31 03:21:39 -0700249 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200250 fprintf(level_file, "%d\n", level);
251 } else {
oprypin6e09d872017-08-31 03:21:39 -0700252 WriteData(&level, sizeof(level), level_file, FLAG_level_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200253 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000254 }
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +0000255
256 if (msg.has_keypress()) {
oprypin6e09d872017-08-31 03:21:39 -0700257 static FILE* keypress_file = OpenFile(FLAG_keypress_file, "wb");
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +0000258 bool keypress = msg.keypress();
oprypin6e09d872017-08-31 03:21:39 -0700259 if (FLAG_text) {
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200260 fprintf(keypress_file, "%d\n", keypress);
261 } else {
262 WriteData(&keypress, sizeof(keypress), keypress_file,
oprypin6e09d872017-08-31 03:21:39 -0700263 FLAG_keypress_file);
Bjorn Volcker40a6d592015-05-06 10:51:34 +0200264 }
andrew@webrtc.orgce8e0772014-02-12 15:28:30 +0000265 }
andrew@webrtc.orgcd824382011-11-11 19:13:36 +0000266 }
Minyue13b96ba2015-10-03 00:39:14 +0200267 } else if (event_msg.type() == Event::CONFIG) {
268 if (!event_msg.has_config()) {
269 printf("Corrupt input file: Config missing.\n");
270 return 1;
271 }
272 const audioproc::Config msg = event_msg.config();
273
274 fprintf(settings_file, "APM re-config at frame: %d\n", frame_count);
275
276 PRINT_CONFIG(aec_enabled);
277 PRINT_CONFIG(aec_delay_agnostic_enabled);
278 PRINT_CONFIG(aec_drift_compensation_enabled);
279 PRINT_CONFIG(aec_extended_filter_enabled);
280 PRINT_CONFIG(aec_suppression_level);
281 PRINT_CONFIG(aecm_enabled);
282 PRINT_CONFIG(aecm_comfort_noise_enabled);
283 PRINT_CONFIG(aecm_routing_mode);
284 PRINT_CONFIG(agc_enabled);
285 PRINT_CONFIG(agc_mode);
286 PRINT_CONFIG(agc_limiter_enabled);
287 PRINT_CONFIG(noise_robust_agc_enabled);
288 PRINT_CONFIG(hpf_enabled);
289 PRINT_CONFIG(ns_enabled);
290 PRINT_CONFIG(ns_level);
291 PRINT_CONFIG(transient_suppression_enabled);
Alejandro Luebsc9b0c262016-05-16 15:32:38 -0700292 PRINT_CONFIG(intelligibility_enhancer_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.
aluebsf03a8d42016-06-17 09:41:41 -0700349 std::stringstream 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));
aluebsf03a8d42016-06-17 09:41:41 -0700353 std::stringstream 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));
aluebsf03a8d42016-06-17 09:41:41 -0700357 std::stringstream 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
362 std::stringstream callorder_name;
363 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}