Lines Matching defs:inPath
98 init_files(lame_global_flags * gf, char const *inPath, char const *outPath)
105 if (0 != strcmp("-", outPath) && 0 == strcmp(inPath, outPath)) {
116 if (init_infile(gf, inPath) < 0) {
117 error_printf("Can't init infile '%s'\n", inPath);
170 lame_decoder_loop(lame_t gfp, FILE * outf, char *inPath, char *outPath)
187 strcmp(inPath, "-") ? inPath : "<stdin>",
188 strlen(inPath) > 26 ? "\n\t" : " ",
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);
533 char inPath[PATH_MAX + 1];
557 memset(inPath, 0, sizeof(inPath));
573 ret = parse_args(gf, argc, argv, inPath, outPath, nogap_inPath, &max_nogap);
601 outf = init_files(gf, inPath, outPath);
633 ret = lame_decoder(gf, outf, inPath, outPath);
637 ret = lame_encoder(gf, outf, 0, inPath, outPath);