Lines Matching defs:key
96 const char *key, float value)
102 if (ctx->api->param_parse(ctx->params, key, buf) == X265_PARAM_BAD_VALUE) {
103 av_log(avctx, AV_LOG_ERROR, "Invalid value %2.2f for param \"%s\".\n", value, key);
111 const char *key, int value)
117 if (ctx->api->param_parse(ctx->params, key, buf) == X265_PARAM_BAD_VALUE) {
118 av_log(avctx, AV_LOG_ERROR, "Invalid value %d for param \"%s\".\n", value, key);
371 int parse_ret = ctx->api->param_parse(ctx->params, en->key, en->value);
376 "Unknown option: %s.\n", en->key);
380 "Invalid value for %s: %s.\n", en->key, en->value);
717 { "x265-params", "set the x265 configuration using a :-separated list of key=value parameters", OFFSET(x265_opts), AV_OPT_TYPE_DICT, { 0 }, 0, 0, VE },