Lines Matching refs:value
310 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\"\n", val);
342 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as image size\n", val);
350 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as video rate\n", val);
363 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as color\n", val);
403 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as boolean\n", val);
421 "Unable to parse option value \"%s\" as %s\n", val, desc);
546 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as duration\n", val);
568 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as channel layout\n", val);
580 av_log(obj, AV_LOG_ERROR, "Unable to parse option value \"%s\" as channel layout\n", val);
678 "The value set by option '%s' is not an image size.\n", o->name);
683 "Invalid negative size value %dx%d for size '%s'\n", w, h, o->name);
700 "The value set by option '%s' is not a video rate.\n", o->name);
720 "The value set by option '%s' is not a %s format", name, desc);
758 "The value set by option '%s' is not a channel layout.\n", o->name);
1029 "The value for option '%s' is not an image size.\n", name);
1064 "The value for option '%s' is not a %s format.\n", desc, name);
1093 "The value for option '%s' is not a channel layout.\n", name);
1112 "The value for option '%s' is not a channel layout.\n", name);
1200 static const char *get_opt_const_name(void *obj, const char *unit, int64_t value)
1208 opt->default_val.i64 == value)
1213 static char *get_opt_flags_string(void *obj, const char *unit, int64_t value)
1223 opt->default_val.i64 & value) {
1536 * Store the value in the field in ctx that is named like key.
1540 * separator just after the parsed key/value pair
1542 * separate key from value
1545 * @return 0 if the key/value pair has been successfully parsed and
1546 * set, or a negative value corresponding to an AVERROR code in case
1548 * AVERROR(EINVAL) if the key/value pair cannot be parsed,
1549 * the error code issued by av_opt_set() if the key/value pair
1570 av_log(ctx, AV_LOG_ERROR, "Missing key or no key/value separator found after key '%s'\n", key);
1575 av_log(ctx, AV_LOG_DEBUG, "Setting entry with key '%s' to value '%s'\n", key, val);
1672 char *av_uninit(parsed_key), *av_uninit(value);
1683 &parsed_key, &value);
1702 av_log(ctx, AV_LOG_DEBUG, "Setting '%s' to value '%s'\n", key, value);
1703 if ((ret = av_opt_set(ctx, key, value, 0)) < 0) {
1706 av_free(value);
1711 av_free(value);
1752 ret = av_opt_set(obj, t->key, t->value, search_flags);
1754 ret = av_dict_set(&tmp, t->key, t->value, 0);
1756 av_log(obj, AV_LOG_ERROR, "Error setting option %s to value %s.\n", t->key, t->value);
2005 range->component_max = 0x10FFFF; // max unicode value
2149 } while (en1 && en2 && !strcmp(en1->key, en2->key) && !strcmp(en1->value, en2->value));