andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame^] | 16 | #include <inttypes.h> |
| 17 | #include <stdint.h> |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 18 | #include <stdio.h> |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame^] | 19 | #include <stdlib.h> |
kwiberg | 62eaacf | 2016-02-17 06:39:05 -0800 | [diff] [blame] | 20 | #include <memory> |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame^] | 21 | #include <string> |
kwiberg | 62eaacf | 2016-02-17 06:39:05 -0800 | [diff] [blame] | 22 | |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame^] | 23 | #include "common_audio/wav_file.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 24 | #include "modules/audio_processing/test/protobuf_utils.h" |
| 25 | #include "modules/audio_processing/test/test_utils.h" |
| 26 | #include "rtc_base/flags.h" |
| 27 | #include "rtc_base/format_macros.h" |
| 28 | #include "rtc_base/ignore_wundef.h" |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 29 | #include "rtc_base/strings/string_builder.h" |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 30 | |
kwiberg | 77eab70 | 2016-09-28 17:42:01 -0700 | [diff] [blame] | 31 | RTC_PUSH_IGNORING_WUNDEF() |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 32 | #include "modules/audio_processing/debug.pb.h" |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame^] | 33 | |
kwiberg | 77eab70 | 2016-09-28 17:42:01 -0700 | [diff] [blame] | 34 | RTC_POP_IGNORING_WUNDEF() |
| 35 | |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 36 | // TODO(andrew): unpack more of the data. |
Mirko Bonadei | 2dfa998 | 2018-10-18 11:35:32 +0200 | [diff] [blame] | 37 | WEBRTC_DEFINE_string(input_file, "input", "The name of the input stream file."); |
| 38 | WEBRTC_DEFINE_string(output_file, |
| 39 | "ref_out", |
| 40 | "The name of the reference output stream file."); |
| 41 | WEBRTC_DEFINE_string(reverse_file, |
| 42 | "reverse", |
| 43 | "The name of the reverse input stream file."); |
| 44 | WEBRTC_DEFINE_string(delay_file, "delay.int32", "The name of the delay file."); |
| 45 | WEBRTC_DEFINE_string(drift_file, "drift.int32", "The name of the drift file."); |
| 46 | WEBRTC_DEFINE_string(level_file, "level.int32", "The name of the level file."); |
| 47 | WEBRTC_DEFINE_string(keypress_file, |
| 48 | "keypress.bool", |
| 49 | "The name of the keypress file."); |
| 50 | WEBRTC_DEFINE_string(callorder_file, |
| 51 | "callorder", |
| 52 | "The name of the render/capture call order file."); |
| 53 | WEBRTC_DEFINE_string(settings_file, |
| 54 | "settings.txt", |
| 55 | "The name of the settings file."); |
| 56 | WEBRTC_DEFINE_bool(full, |
| 57 | false, |
| 58 | "Unpack the full set of files (normally not needed)."); |
| 59 | WEBRTC_DEFINE_bool(raw, false, "Write raw data instead of a WAV file."); |
| 60 | WEBRTC_DEFINE_bool( |
| 61 | text, |
| 62 | false, |
| 63 | "Write non-audio files as text files instead of binary files."); |
| 64 | WEBRTC_DEFINE_bool(help, false, "Print this message."); |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 65 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 66 | #define PRINT_CONFIG(field_name) \ |
| 67 | if (msg.has_##field_name()) { \ |
Minyue | 13b96ba | 2015-10-03 00:39:14 +0200 | [diff] [blame] | 68 | fprintf(settings_file, " " #field_name ": %d\n", msg.field_name()); \ |
| 69 | } |
| 70 | |
Alex Loiko | 5feb30e | 2018-04-16 13:52:32 +0200 | [diff] [blame] | 71 | #define PRINT_CONFIG_FLOAT(field_name) \ |
| 72 | if (msg.has_##field_name()) { \ |
| 73 | fprintf(settings_file, " " #field_name ": %f\n", msg.field_name()); \ |
| 74 | } |
| 75 | |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 76 | namespace webrtc { |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 77 | |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 78 | using audioproc::Event; |
| 79 | using audioproc::ReverseStream; |
| 80 | using audioproc::Stream; |
| 81 | using audioproc::Init; |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 82 | |
Sam Zackrisson | f61475d | 2018-05-11 11:34:49 +0200 | [diff] [blame] | 83 | namespace { |
| 84 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 85 | void WriteData(const void* data, |
| 86 | size_t size, |
| 87 | FILE* file, |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 88 | const std::string& filename) { |
| 89 | if (fwrite(data, size, 1, file) != 1) { |
| 90 | printf("Error when writing to %s\n", filename.c_str()); |
| 91 | exit(1); |
| 92 | } |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 93 | } |
| 94 | |
Sam Zackrisson | f61475d | 2018-05-11 11:34:49 +0200 | [diff] [blame] | 95 | void WriteCallOrderData(const bool render_call, |
| 96 | FILE* file, |
| 97 | const std::string& filename) { |
| 98 | const char call_type = render_call ? 'r' : 'c'; |
| 99 | WriteData(&call_type, sizeof(call_type), file, filename.c_str()); |
| 100 | } |
| 101 | |
Per Åhgren | c1bfe1a | 2018-09-21 16:23:50 +0200 | [diff] [blame] | 102 | bool WritingCallOrderFile() { |
| 103 | return FLAG_full; |
| 104 | } |
| 105 | |
Sam Zackrisson | f61475d | 2018-05-11 11:34:49 +0200 | [diff] [blame] | 106 | } // namespace |
| 107 | |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 108 | int do_main(int argc, char* argv[]) { |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 109 | std::string program_name = argv[0]; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 110 | std::string usage = |
| 111 | "Commandline tool to unpack audioproc debug files.\n" |
| 112 | "Example usage:\n" + |
| 113 | program_name + " debug_dump.pb\n"; |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 114 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 115 | if (rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true) || FLAG_help || |
| 116 | argc < 2) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 117 | printf("%s", usage.c_str()); |
| 118 | if (FLAG_help) { |
| 119 | rtc::FlagList::Print(nullptr, false); |
| 120 | return 0; |
| 121 | } |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 122 | return 1; |
| 123 | } |
| 124 | |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 125 | FILE* debug_file = OpenFile(argv[1], "rb"); |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 126 | |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 127 | Event event_msg; |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 128 | int frame_count = 0; |
pkasting | 25702cb | 2016-01-08 13:50:27 -0800 | [diff] [blame] | 129 | size_t reverse_samples_per_channel = 0; |
| 130 | size_t input_samples_per_channel = 0; |
| 131 | size_t output_samples_per_channel = 0; |
Peter Kasting | 6955870 | 2016-01-12 16:26:35 -0800 | [diff] [blame] | 132 | size_t num_reverse_channels = 0; |
| 133 | size_t num_input_channels = 0; |
| 134 | size_t num_output_channels = 0; |
kwiberg | 62eaacf | 2016-02-17 06:39:05 -0800 | [diff] [blame] | 135 | std::unique_ptr<WavWriter> reverse_wav_file; |
| 136 | std::unique_ptr<WavWriter> input_wav_file; |
| 137 | std::unique_ptr<WavWriter> output_wav_file; |
| 138 | std::unique_ptr<RawFile> reverse_raw_file; |
| 139 | std::unique_ptr<RawFile> input_raw_file; |
| 140 | std::unique_ptr<RawFile> output_raw_file; |
Minyue | 13b96ba | 2015-10-03 00:39:14 +0200 | [diff] [blame] | 141 | |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 142 | rtc::StringBuilder callorder_raw_name; |
Sam Zackrisson | f61475d | 2018-05-11 11:34:49 +0200 | [diff] [blame] | 143 | callorder_raw_name << FLAG_callorder_file << ".char"; |
Per Åhgren | c1bfe1a | 2018-09-21 16:23:50 +0200 | [diff] [blame] | 144 | FILE* callorder_char_file = WritingCallOrderFile() |
| 145 | ? OpenFile(callorder_raw_name.str(), "wb") |
| 146 | : nullptr; |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 147 | FILE* settings_file = OpenFile(FLAG_settings_file, "wb"); |
Minyue | 13b96ba | 2015-10-03 00:39:14 +0200 | [diff] [blame] | 148 | |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 149 | while (ReadMessageFromFile(debug_file, &event_msg)) { |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 150 | if (event_msg.type() == Event::REVERSE_STREAM) { |
| 151 | if (!event_msg.has_reverse_stream()) { |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 152 | printf("Corrupt input file: ReverseStream missing.\n"); |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 153 | return 1; |
| 154 | } |
| 155 | |
| 156 | const ReverseStream msg = event_msg.reverse_stream(); |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 157 | if (msg.has_data()) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 158 | if (FLAG_raw && !reverse_raw_file) { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 159 | reverse_raw_file.reset( |
| 160 | new RawFile(std::string(FLAG_reverse_file) + ".pcm")); |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 161 | } |
aluebs@webrtc.org | bac0726 | 2014-09-03 13:39:01 +0000 | [diff] [blame] | 162 | // TODO(aluebs): Replace "num_reverse_channels * |
| 163 | // reverse_samples_per_channel" with "msg.data().size() / |
| 164 | // sizeof(int16_t)" and so on when this fix in audio_processing has made |
| 165 | // it into stable: https://webrtc-codereview.appspot.com/15299004/ |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 166 | WriteIntData(reinterpret_cast<const int16_t*>(msg.data().data()), |
aluebs@webrtc.org | bac0726 | 2014-09-03 13:39:01 +0000 | [diff] [blame] | 167 | num_reverse_channels * reverse_samples_per_channel, |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 168 | reverse_wav_file.get(), reverse_raw_file.get()); |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 169 | } else if (msg.channel_size() > 0) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 170 | if (FLAG_raw && !reverse_raw_file) { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 171 | reverse_raw_file.reset( |
| 172 | new RawFile(std::string(FLAG_reverse_file) + ".float")); |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 173 | } |
kwiberg | 62eaacf | 2016-02-17 06:39:05 -0800 | [diff] [blame] | 174 | std::unique_ptr<const float* []> data( |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 175 | new const float*[num_reverse_channels]); |
Peter Kasting | 6955870 | 2016-01-12 16:26:35 -0800 | [diff] [blame] | 176 | for (size_t i = 0; i < num_reverse_channels; ++i) { |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 177 | data[i] = reinterpret_cast<const float*>(msg.channel(i).data()); |
| 178 | } |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 179 | WriteFloatData(data.get(), reverse_samples_per_channel, |
| 180 | num_reverse_channels, reverse_wav_file.get(), |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 181 | reverse_raw_file.get()); |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 182 | } |
Sam Zackrisson | f61475d | 2018-05-11 11:34:49 +0200 | [diff] [blame] | 183 | if (FLAG_full) { |
Per Åhgren | c1bfe1a | 2018-09-21 16:23:50 +0200 | [diff] [blame] | 184 | if (WritingCallOrderFile()) { |
| 185 | WriteCallOrderData(true /* render_call */, callorder_char_file, |
| 186 | FLAG_callorder_file); |
| 187 | } |
Sam Zackrisson | f61475d | 2018-05-11 11:34:49 +0200 | [diff] [blame] | 188 | } |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 189 | } else if (event_msg.type() == Event::STREAM) { |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 190 | frame_count++; |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 191 | if (!event_msg.has_stream()) { |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 192 | printf("Corrupt input file: Stream missing.\n"); |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 193 | return 1; |
| 194 | } |
| 195 | |
| 196 | const Stream msg = event_msg.stream(); |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 197 | if (msg.has_input_data()) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 198 | if (FLAG_raw && !input_raw_file) { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 199 | input_raw_file.reset( |
| 200 | new RawFile(std::string(FLAG_input_file) + ".pcm")); |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 201 | } |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 202 | WriteIntData(reinterpret_cast<const int16_t*>(msg.input_data().data()), |
aluebs@webrtc.org | bac0726 | 2014-09-03 13:39:01 +0000 | [diff] [blame] | 203 | num_input_channels * input_samples_per_channel, |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 204 | input_wav_file.get(), input_raw_file.get()); |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 205 | } else if (msg.input_channel_size() > 0) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 206 | if (FLAG_raw && !input_raw_file) { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 207 | input_raw_file.reset( |
| 208 | new RawFile(std::string(FLAG_input_file) + ".float")); |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 209 | } |
kwiberg | 62eaacf | 2016-02-17 06:39:05 -0800 | [diff] [blame] | 210 | std::unique_ptr<const float* []> data( |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 211 | new const float*[num_input_channels]); |
Peter Kasting | 6955870 | 2016-01-12 16:26:35 -0800 | [diff] [blame] | 212 | for (size_t i = 0; i < num_input_channels; ++i) { |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 213 | data[i] = reinterpret_cast<const float*>(msg.input_channel(i).data()); |
| 214 | } |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 215 | WriteFloatData(data.get(), input_samples_per_channel, |
| 216 | num_input_channels, input_wav_file.get(), |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 217 | input_raw_file.get()); |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 218 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 219 | |
| 220 | if (msg.has_output_data()) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 221 | if (FLAG_raw && !output_raw_file) { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 222 | output_raw_file.reset( |
| 223 | new RawFile(std::string(FLAG_output_file) + ".pcm")); |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 224 | } |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 225 | WriteIntData(reinterpret_cast<const int16_t*>(msg.output_data().data()), |
aluebs@webrtc.org | bac0726 | 2014-09-03 13:39:01 +0000 | [diff] [blame] | 226 | num_output_channels * output_samples_per_channel, |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 227 | output_wav_file.get(), output_raw_file.get()); |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 228 | } else if (msg.output_channel_size() > 0) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 229 | if (FLAG_raw && !output_raw_file) { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 230 | output_raw_file.reset( |
| 231 | new RawFile(std::string(FLAG_output_file) + ".float")); |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 232 | } |
kwiberg | 62eaacf | 2016-02-17 06:39:05 -0800 | [diff] [blame] | 233 | std::unique_ptr<const float* []> data( |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 234 | new const float*[num_output_channels]); |
Peter Kasting | 6955870 | 2016-01-12 16:26:35 -0800 | [diff] [blame] | 235 | for (size_t i = 0; i < num_output_channels; ++i) { |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 236 | data[i] = |
| 237 | reinterpret_cast<const float*>(msg.output_channel(i).data()); |
| 238 | } |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 239 | WriteFloatData(data.get(), output_samples_per_channel, |
| 240 | num_output_channels, output_wav_file.get(), |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 241 | output_raw_file.get()); |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 242 | } |
| 243 | |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 244 | if (FLAG_full) { |
Per Åhgren | c1bfe1a | 2018-09-21 16:23:50 +0200 | [diff] [blame] | 245 | if (WritingCallOrderFile()) { |
| 246 | WriteCallOrderData(false /* render_call */, callorder_char_file, |
| 247 | FLAG_callorder_file); |
| 248 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 249 | if (msg.has_delay()) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 250 | static FILE* delay_file = OpenFile(FLAG_delay_file, "wb"); |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 251 | int32_t delay = msg.delay(); |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 252 | if (FLAG_text) { |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 253 | fprintf(delay_file, "%d\n", delay); |
| 254 | } else { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 255 | WriteData(&delay, sizeof(delay), delay_file, FLAG_delay_file); |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 256 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | if (msg.has_drift()) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 260 | static FILE* drift_file = OpenFile(FLAG_drift_file, "wb"); |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 261 | int32_t drift = msg.drift(); |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 262 | if (FLAG_text) { |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 263 | fprintf(drift_file, "%d\n", drift); |
| 264 | } else { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 265 | WriteData(&drift, sizeof(drift), drift_file, FLAG_drift_file); |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 266 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | if (msg.has_level()) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 270 | static FILE* level_file = OpenFile(FLAG_level_file, "wb"); |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 271 | int32_t level = msg.level(); |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 272 | if (FLAG_text) { |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 273 | fprintf(level_file, "%d\n", level); |
| 274 | } else { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 275 | WriteData(&level, sizeof(level), level_file, FLAG_level_file); |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 276 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 277 | } |
andrew@webrtc.org | ce8e077 | 2014-02-12 15:28:30 +0000 | [diff] [blame] | 278 | |
| 279 | if (msg.has_keypress()) { |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 280 | static FILE* keypress_file = OpenFile(FLAG_keypress_file, "wb"); |
andrew@webrtc.org | ce8e077 | 2014-02-12 15:28:30 +0000 | [diff] [blame] | 281 | bool keypress = msg.keypress(); |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 282 | if (FLAG_text) { |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 283 | fprintf(keypress_file, "%d\n", keypress); |
| 284 | } else { |
| 285 | WriteData(&keypress, sizeof(keypress), keypress_file, |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 286 | FLAG_keypress_file); |
Bjorn Volcker | 40a6d59 | 2015-05-06 10:51:34 +0200 | [diff] [blame] | 287 | } |
andrew@webrtc.org | ce8e077 | 2014-02-12 15:28:30 +0000 | [diff] [blame] | 288 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 289 | } |
Minyue | 13b96ba | 2015-10-03 00:39:14 +0200 | [diff] [blame] | 290 | } else if (event_msg.type() == Event::CONFIG) { |
| 291 | if (!event_msg.has_config()) { |
| 292 | printf("Corrupt input file: Config missing.\n"); |
| 293 | return 1; |
| 294 | } |
| 295 | const audioproc::Config msg = event_msg.config(); |
| 296 | |
| 297 | fprintf(settings_file, "APM re-config at frame: %d\n", frame_count); |
| 298 | |
| 299 | PRINT_CONFIG(aec_enabled); |
| 300 | PRINT_CONFIG(aec_delay_agnostic_enabled); |
| 301 | PRINT_CONFIG(aec_drift_compensation_enabled); |
| 302 | PRINT_CONFIG(aec_extended_filter_enabled); |
| 303 | PRINT_CONFIG(aec_suppression_level); |
| 304 | PRINT_CONFIG(aecm_enabled); |
| 305 | PRINT_CONFIG(aecm_comfort_noise_enabled); |
| 306 | PRINT_CONFIG(aecm_routing_mode); |
| 307 | PRINT_CONFIG(agc_enabled); |
| 308 | PRINT_CONFIG(agc_mode); |
| 309 | PRINT_CONFIG(agc_limiter_enabled); |
| 310 | PRINT_CONFIG(noise_robust_agc_enabled); |
| 311 | PRINT_CONFIG(hpf_enabled); |
| 312 | PRINT_CONFIG(ns_enabled); |
| 313 | PRINT_CONFIG(ns_level); |
| 314 | PRINT_CONFIG(transient_suppression_enabled); |
Alex Loiko | 5feb30e | 2018-04-16 13:52:32 +0200 | [diff] [blame] | 315 | PRINT_CONFIG(pre_amplifier_enabled); |
| 316 | PRINT_CONFIG_FLOAT(pre_amplifier_fixed_gain_factor); |
| 317 | |
peah | 7789fe7 | 2016-04-15 01:19:44 -0700 | [diff] [blame] | 318 | if (msg.has_experiments_description()) { |
| 319 | fprintf(settings_file, " experiments_description: %s\n", |
| 320 | msg.experiments_description().c_str()); |
| 321 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 322 | } else if (event_msg.type() == Event::INIT) { |
| 323 | if (!event_msg.has_init()) { |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 324 | printf("Corrupt input file: Init missing.\n"); |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 325 | return 1; |
| 326 | } |
| 327 | |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 328 | const Init msg = event_msg.init(); |
| 329 | // These should print out zeros if they're missing. |
| 330 | fprintf(settings_file, "Init at frame: %d\n", frame_count); |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 331 | int input_sample_rate = msg.sample_rate(); |
| 332 | fprintf(settings_file, " Input sample rate: %d\n", input_sample_rate); |
| 333 | int output_sample_rate = msg.output_sample_rate(); |
| 334 | fprintf(settings_file, " Output sample rate: %d\n", output_sample_rate); |
| 335 | int reverse_sample_rate = msg.reverse_sample_rate(); |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 336 | fprintf(settings_file, " Reverse sample rate: %d\n", |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 337 | reverse_sample_rate); |
| 338 | num_input_channels = msg.num_input_channels(); |
Peter Kasting | 6955870 | 2016-01-12 16:26:35 -0800 | [diff] [blame] | 339 | fprintf(settings_file, " Input channels: %" PRIuS "\n", |
| 340 | num_input_channels); |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 341 | num_output_channels = msg.num_output_channels(); |
Peter Kasting | 6955870 | 2016-01-12 16:26:35 -0800 | [diff] [blame] | 342 | fprintf(settings_file, " Output channels: %" PRIuS "\n", |
| 343 | num_output_channels); |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 344 | num_reverse_channels = msg.num_reverse_channels(); |
Peter Kasting | 6955870 | 2016-01-12 16:26:35 -0800 | [diff] [blame] | 345 | fprintf(settings_file, " Reverse channels: %" PRIuS "\n", |
| 346 | num_reverse_channels); |
Minyue Li | 656d609 | 2018-08-10 15:38:52 +0200 | [diff] [blame] | 347 | if (msg.has_timestamp_ms()) { |
| 348 | const int64_t timestamp = msg.timestamp_ms(); |
| 349 | fprintf(settings_file, " Timestamp in millisecond: %" PRId64 "\n", |
| 350 | timestamp); |
| 351 | } |
andrew@webrtc.org | cd82438 | 2011-11-11 19:13:36 +0000 | [diff] [blame] | 352 | |
| 353 | fprintf(settings_file, "\n"); |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 354 | |
| 355 | if (reverse_sample_rate == 0) { |
| 356 | reverse_sample_rate = input_sample_rate; |
| 357 | } |
| 358 | if (output_sample_rate == 0) { |
| 359 | output_sample_rate = input_sample_rate; |
| 360 | } |
| 361 | |
pkasting | 25702cb | 2016-01-08 13:50:27 -0800 | [diff] [blame] | 362 | reverse_samples_per_channel = |
| 363 | static_cast<size_t>(reverse_sample_rate / 100); |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 364 | input_samples_per_channel = static_cast<size_t>(input_sample_rate / 100); |
pkasting | 25702cb | 2016-01-08 13:50:27 -0800 | [diff] [blame] | 365 | output_samples_per_channel = |
| 366 | static_cast<size_t>(output_sample_rate / 100); |
aluebs@webrtc.org | bac0726 | 2014-09-03 13:39:01 +0000 | [diff] [blame] | 367 | |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 368 | if (!FLAG_raw) { |
aluebs@webrtc.org | 021e76f | 2014-09-04 18:12:00 +0000 | [diff] [blame] | 369 | // The WAV files need to be reset every time, because they cant change |
| 370 | // their sample rate or number of channels. |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 371 | rtc::StringBuilder reverse_name; |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 372 | reverse_name << FLAG_reverse_file << frame_count << ".wav"; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 373 | reverse_wav_file.reset(new WavWriter( |
| 374 | reverse_name.str(), reverse_sample_rate, num_reverse_channels)); |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 375 | rtc::StringBuilder input_name; |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 376 | input_name << FLAG_input_file << frame_count << ".wav"; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 377 | input_wav_file.reset(new WavWriter(input_name.str(), input_sample_rate, |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 378 | num_input_channels)); |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 379 | rtc::StringBuilder output_name; |
oprypin | 6e09d87 | 2017-08-31 03:21:39 -0700 | [diff] [blame] | 380 | output_name << FLAG_output_file << frame_count << ".wav"; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 381 | output_wav_file.reset(new WavWriter( |
| 382 | output_name.str(), output_sample_rate, num_output_channels)); |
Sam Zackrisson | f61475d | 2018-05-11 11:34:49 +0200 | [diff] [blame] | 383 | |
Per Åhgren | c1bfe1a | 2018-09-21 16:23:50 +0200 | [diff] [blame] | 384 | if (WritingCallOrderFile()) { |
| 385 | rtc::StringBuilder callorder_name; |
| 386 | callorder_name << FLAG_callorder_file << frame_count << ".char"; |
| 387 | callorder_char_file = OpenFile(callorder_name.str(), "wb"); |
| 388 | } |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 389 | } |
andrew@webrtc.org | cb18121 | 2011-10-26 00:27:17 +0000 | [diff] [blame] | 390 | } |
| 391 | } |
| 392 | |
| 393 | return 0; |
| 394 | } |
andrew@webrtc.org | a8b9737 | 2014-03-10 22:26:12 +0000 | [diff] [blame] | 395 | |
| 396 | } // namespace webrtc |
| 397 | |
| 398 | int main(int argc, char* argv[]) { |
| 399 | return webrtc::do_main(argc, argv); |
| 400 | } |