Lines Matching defs:encoder
23 * AV1 encoder support via libaom
68 struct aom_codec_ctx encoder;
216 const char *error = aom_codec_error(&ctx->encoder);
217 const char *detail = aom_codec_error_detail(&ctx->encoder);
325 res = aom_codec_control(&ctx->encoder, id, val);
355 res = aom_codec_control(&ctx->encoder, id, ptr);
403 aom_codec_destroy(&ctx->encoder);
811 /* 0-3: For non-zero values the encoder increasingly optimizes for reduced
836 res = aom_codec_enc_init(&ctx->encoder, iface, &enccfg, flags);
839 log_encoder_error(avctx, "Failed to initialize encoder");
974 int ret = aom_codec_set_option(&ctx->encoder, en->key, en->value);
1110 * Queue multiple output frames from the encoder, returning the front-most.
1134 /* consume all available output from the encoder before returning. buffers
1136 while ((pkt = aom_codec_get_cx_data(&ctx->encoder, &iter))) {
1240 res = aom_codec_encode(&ctx->encoder, rawimg, timestamp,
1355 { "static-thresh", "A change threshold on blocks below which they will be skipped by the encoder", OFFSET(static_thresh), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
1376 { "tune", "The metric that the encoder tunes for. Automatically chosen by the encoder by default", OFFSET(tune), AV_OPT_TYPE_INT, {.i64 = -1}, -1, AOM_TUNE_SSIM, VE, "tune"},
1425 .class_name = "libaom-av1 encoder",