Home
last modified time | relevance | path

Searched refs:outPath (Results 1 – 3 of 3) sorted by relevance

/plan9/sys/src/games/mp3enc/
H A Dmain.c98 static char outPath[] = "-"; in main() local
132 if ((outf = init_outfile(outPath, lame_get_decode_only(gf))) == NULL) { in main()
133 fprintf(stderr, "Can't init outfile '%s'\n", outPath); in main()
213 lame_decoder(gf, outf, mp3_delay, inPath, outPath); in main()
215 lame_decoder(gf, outf, gf->encoder_delay, inPath, outPath); in main()
H A Dget_audio.h39 FILE* init_outfile ( char *outPath, int decode );
56 int lame_decoder(lame_global_flags *gfp,FILE *outf,int skip, char *inPath, char *outPath);
H A Dget_audio.c142 init_outfile(char *outPath, int decode) in init_outfile() argument
147 if (0 == strcmp(outPath, "-")) in init_outfile()
150 if ((outf = fopen(outPath, "wb+")) == NULL) in init_outfile()
434 char *outPath) in lame_decoder() argument
499 strcmp(outPath, "-") ? outPath : "<stdout>", in lame_decoder()
500 strlen(outPath) > 45 ? "\n\t" : " "); in lame_decoder()