OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... | |
21 #include "webrtc/modules/audio_processing/test/protobuf_utils.h" | 21 #include "webrtc/modules/audio_processing/test/protobuf_utils.h" |
22 #include "webrtc/modules/audio_processing/test/test_utils.h" | 22 #include "webrtc/modules/audio_processing/test/test_utils.h" |
23 #include "webrtc/typedefs.h" | 23 #include "webrtc/typedefs.h" |
24 | 24 |
25 // TODO(andrew): unpack more of the data. | 25 // TODO(andrew): unpack more of the data. |
26 DEFINE_string(input_file, "input", "The name of the input stream file."); | 26 DEFINE_string(input_file, "input", "The name of the input stream file."); |
27 DEFINE_string(output_file, "ref_out", | 27 DEFINE_string(output_file, "ref_out", |
28 "The name of the reference output stream file."); | 28 "The name of the reference output stream file."); |
29 DEFINE_string(reverse_file, "reverse", | 29 DEFINE_string(reverse_file, "reverse", |
30 "The name of the reverse input stream file."); | 30 "The name of the reverse input stream file."); |
31 DEFINE_string(delay_file, "delay.int32", "The name of the delay file."); | 31 DEFINE_string(delay_file, "delay.int32_t", "The name of the delay file."); |
hlundin-webrtc
2015/09/22 09:57:31
Don't change these. They are file names.
| |
32 DEFINE_string(drift_file, "drift.int32", "The name of the drift file."); | 32 DEFINE_string(drift_file, "drift.int32_t", "The name of the drift file."); |
33 DEFINE_string(level_file, "level.int32", "The name of the level file."); | 33 DEFINE_string(level_file, "level.int32_t", "The name of the level file."); |
34 DEFINE_string(keypress_file, "keypress.bool", "The name of the keypress file."); | 34 DEFINE_string(keypress_file, "keypress.bool", "The name of the keypress file."); |
35 DEFINE_string(settings_file, "settings.txt", "The name of the settings file."); | 35 DEFINE_string(settings_file, "settings.txt", "The name of the settings file."); |
36 DEFINE_bool(full, false, | 36 DEFINE_bool(full, false, |
37 "Unpack the full set of files (normally not needed)."); | 37 "Unpack the full set of files (normally not needed)."); |
38 DEFINE_bool(raw, false, "Write raw data instead of a WAV file."); | 38 DEFINE_bool(raw, false, "Write raw data instead of a WAV file."); |
39 DEFINE_bool(text, | 39 DEFINE_bool(text, |
40 false, | 40 false, |
41 "Write non-audio files as text files instead of binary files."); | 41 "Write non-audio files as text files instead of binary files."); |
42 | 42 |
43 namespace webrtc { | 43 namespace webrtc { |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
272 } | 272 } |
273 | 273 |
274 return 0; | 274 return 0; |
275 } | 275 } |
276 | 276 |
277 } // namespace webrtc | 277 } // namespace webrtc |
278 | 278 |
279 int main(int argc, char* argv[]) { | 279 int main(int argc, char* argv[]) { |
280 return webrtc::do_main(argc, argv); | 280 return webrtc::do_main(argc, argv); |
281 } | 281 } |
OLD | NEW |