Lines Matching refs:ret
264 int ret;
266 ret = lame_decoder_loop(gfp, outf, inPath, outPath);
269 return ret;
521 int ret;
523 ret = lame_encoder_loop(gf, outf, nogap, inPath, outPath);
526 return ret;
545 int ret;
573 ret = parse_args(gf, argc, argv, inPath, outPath, nogap_inPath, &max_nogap);
574 if (ret < 0) {
575 return ret == -2 ? 0 : 1;
616 ret = lame_init_params(gf);
617 if (ret < 0) {
618 if (ret == -1) {
624 return ret;
633 ret = lame_decoder(gf, outf, inPath, outPath);
637 ret = lame_encoder(gf, outf, 0, inPath, outPath);
657 ret = lame_encoder(gf, outf, use_flush_nogap, nogap_inPath[i], nogap_outPath[i]);
660 return ret;