Lines Matching defs:cbr
815 " --cbr enforce use of constant bitrate\n"
995 " \"cbr\" - If you use the ABR mode (read above) with a significant\n"
997 " you can use the \"cbr\" option to force CBR mode encoding\n"
1005 " or --preset cbr 192 <input file> <output file>\n"
1018 presets_set(lame_t gfp, int fast, int cbr, const char *preset_name, const char *ProgramName)
1023 && (cbr < 1)) {
1095 if (cbr == 1)
1124 " <cbr> (ABR Mode) - The ABR Mode is implied. To use it,\n"
1131 " or \"%s --preset cbr 192 <input file> <output file>\"\n"
1616 T_ELIF("cbr")
2024 int fast = 0, cbr = 0;
2026 while ((strcmp(nextArg, "fast") == 0) || (strcmp(nextArg, "cbr") == 0)) {
2030 if ((strcmp(nextArg, "cbr") == 0) && (cbr < 1))
2031 cbr = 1;
2037 if (presets_set(gfp, fast, cbr, nextArg, ProgramName) < 0)