Lines Matching defs:outPath
98 init_files(lame_global_flags * gf, char const *inPath, char const *outPath)
105 if (0 != strcmp("-", outPath) && 0 == strcmp(inPath, outPath)) {
120 if ((outf = init_outfile(outPath, lame_get_decode_only(gf))) == NULL) {
121 error_printf("Can't init outfile '%s'\n", outPath);
170 lame_decoder_loop(lame_t gfp, FILE * outf, char *inPath, char *outPath)
195 strcmp(outPath, "-") ? outPath : "<stdout>",
196 strlen(outPath) > 45 ? "\n\t" : " ");
252 if (!global_decoder.disable_wav_header && strcmp("-", outPath)
262 lame_decoder(lame_t gfp, FILE * outf, char *inPath, char *outPath)
266 ret = lame_decoder_loop(gfp, outf, inPath, outPath);
389 lame_encoder_loop(lame_global_flags * gf, FILE * outf, int nogap, char *inPath, char *outPath)
396 encoder_progress_begin(gf, inPath, outPath);
519 lame_encoder(lame_global_flags * gf, FILE * outf, int nogap, char *inPath, char *outPath)
523 ret = lame_encoder_loop(gf, outf, nogap, inPath, outPath);
534 char outPath[PATH_MAX + 1];
573 ret = parse_args(gf, argc, argv, inPath, outPath, nogap_inPath, &max_nogap);
580 if (outPath[0] != '\0' && max_nogap > 0) {
581 strncpy(nogapdir, outPath, PATH_MAX + 1);
601 outf = init_files(gf, inPath, outPath);
633 ret = lame_decoder(gf, outf, inPath, outPath);
637 ret = lame_encoder(gf, outf, 0, inPath, outPath);