Searched defs:out_filename (Results 1 - 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/targets/graw-null/
H A Dgraw_util.c56 static char out_filename[256] = ""; variable
68 strncpy(out_filename, argv[*argi + 1], sizeof(out_filename) - 1);
69 out_filename[sizeof(out_filename) - 1] = '\0';
83 filename = out_filename;
/external/webrtc/webrtc/modules/audio_coding/codecs/tools/
H A Daudio_codec_speed_test.cc76 std::string out_filename = local
81 while ((found = out_filename.find('/')) != std::string::npos)
82 out_filename.replace(found, 1, "_");
84 out_filename = test::OutputPath() + out_filename + ".pcm";
86 out_file_ = fopen(out_filename.c_str(), "wb");
89 printf("Output to be saved in %s.\n", out_filename.c_str());
/external/webrtc/webrtc/modules/audio_coding/test/
H A DTestVADDTX.cc83 std::string out_filename, bool append,
98 out_file.Open(out_filename, kOutputFreqHz, "ab");
100 out_file.Open(out_filename, kOutputFreqHz, "wb");
202 std::stringstream out_filename; local
203 out_filename << webrtc::test::OutputPath()
208 32000, 1, out_filename.str(), !new_outfile, expects);
247 std::string out_filename = webrtc::test::OutputPath() + local
253 32000, 1, out_filename, false, expects);
258 32000, 1, out_filename, true, expects);
261 out_filename
82 Run(std::string in_filename, int frequency, int channels, std::string out_filename, bool append, const int* expects) argument
[all...]
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc322 std::string out_filename = user_out_filename; local
326 out_filename = dir + prefix + file + ext;
328 bool different_output_name = out_filename != files[i];
340 size_t origoutfilesize = GetFileSize(out_filename);
364 printf("File %s exists, overwrite? (y/N) ", out_filename.c_str());
375 lodepng::save_file(resultpng, out_filename);
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Dneteq_quality_test.cc92 DEFINE_string(out_filename,
232 const std::string out_filename = FLAGS_out_filename; local
233 const std::string log_filename = out_filename + ".log";
237 if (out_filename.size() >= 4 &&
238 out_filename.substr(out_filename.size() - 4) == ".wav") {
241 new webrtc::test::OutputWavFile(out_filename, 1000 * out_sampling_khz));
244 output_.reset(new webrtc::test::OutputAudioFile(out_filename));
/external/webrtc/webrtc/modules/audio_processing/test/
H A Dprocess_test.cc155 std::string out_filename; local
200 out_filename = argv[i];
471 if (out_filename.size() == 0) {
472 out_filename = out_path + "out";
647 out_filename + ".wav", output_sample_rate,
804 output_raw_file.reset(new RawFile(out_filename + ".pcm"));
812 output_raw_file.reset(new RawFile(out_filename + ".float"));
891 output_wav_file.reset(new WavWriter(out_filename + ".wav",
1041 output_raw_file.reset(new RawFile(out_filename + ".pcm"));
1044 output_wav_file.reset(new WavWriter(out_filename
[all...]
H A Daudio_processing_unittest.cc388 const std::string& out_filename,
1712 const std::string& out_filename,
1741 EXPECT_NOERR(apm_->StartDebugRecording(out_filename.c_str()));
1814 const std::string out_filename = test::TempFilename( local
1818 ProcessDebugDump(ref_filename, out_filename, format);
1821 FILE* out_file = fopen(out_filename.c_str(), "rb");
1843 remove(out_filename.c_str());
1711 ProcessDebugDump(const std::string& in_filename, const std::string& out_filename, Format format) argument

Completed in 179 milliseconds