Lines Matching refs:quantizer
51 int quantizer;
358 if (avctx->bit_rate && ctx->quantizer < 0) {
361 rret = rav1e_config_parse_int(cfg, "quantizer", max_quantizer);
363 av_log(avctx, AV_LOG_ERROR, "Could not set max quantizer.\n");
371 av_log(avctx, AV_LOG_ERROR, "Could not set min quantizer.\n");
383 } else if (ctx->quantizer >= 0) {
385 av_log(avctx, AV_LOG_WARNING, "Both bitrate and quantizer specified. Using quantizer mode.");
387 rret = rav1e_config_parse_int(cfg, "quantizer", ctx->quantizer);
389 av_log(avctx, AV_LOG_ERROR, "Could not set quantizer.\n");
576 { "qp", "use constant quantizer mode", OFFSET(quantizer), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 255, VE },