Lines Matching refs:FILE
5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
14 // to unpack the file into its component parts: audio and other data.
31 DEFINE_string(input_file, "input.pcm", "The name of the input stream file.");
33 "The name of the reference output stream file.");
35 "The name of the reverse input stream file.");
36 DEFINE_string(delay_file, "delay.int32", "The name of the delay file.");
37 DEFINE_string(drift_file, "drift.int32", "The name of the drift file.");
38 DEFINE_string(level_file, "level.int32", "The name of the level file.");
39 DEFINE_string(settings_file, "settings.txt", "The name of the settings file.");
44 // Returns true on success, false on error or end-of-file.
45 bool ReadMessageFromFile(FILE* file,
50 if (fread(&size, sizeof(int32_t), 1, file) != 1) {
59 if (fread(array.get(), sizeof(char), usize, file) != usize) {
79 FILE* debug_file = fopen(argv[1], "rb");
84 FILE* input_file = fopen(FLAGS_input_file.c_str(), "wb");
89 FILE* output_file = fopen(FLAGS_output_file.c_str(), "wb");
94 FILE* reverse_file = fopen(FLAGS_reverse_file.c_str(), "wb");
99 FILE* settings_file = fopen(FLAGS_settings_file.c_str(), "wb");
105 FILE* delay_file = NULL;
106 FILE* drift_file = NULL;
107 FILE* level_file = NULL;
131 printf("Corrupted input file: ReverseStream missing.\n");
146 printf("Corrupted input file: Stream missing.\n");
194 printf("Corrupted input file: Init missing.\n");