Lines Matching refs:name
141 for (po = options; po->name; po++) {
153 av_strlcpy(buf, po->name, sizeof(buf));
176 static const OptionDef *find_option(const OptionDef *po, const char *name)
178 while (po->name) {
180 if (av_strstart(name, po->name, &end) && (!*end || *end == ':'))
310 .name = "AVOption passthrough",
319 if (!po->name && opt[0] == 'n' && opt[1] == 'o') {
322 if ((po->name && (po->flags & OPT_BOOL)))
327 if (!po->name)
329 if (!po->name) {
381 g->group_def->name, g->arg);
392 g->group_def->name, g->arg);
422 if (!po->name && cur_opt[0] == 'n' && cur_opt[1] == 'o')
425 if ((!po->name && !strcmp(cur_opt, optname)) ||
426 (po->name && !strcmp(optname, po->name)))
429 if (!po->name || po->flags & HAS_ARG)
461 while (po->name) {
500 static const AVOption *opt_find(void *obj, const char *name, const char *unit,
503 const AVOption *o = av_opt_find(obj, name, unit, opt_flags, search_flags);
714 av_log(NULL, AV_LOG_DEBUG, " matched as %s.\n", groups[0].name);
733 groups[ret].name, arg);
739 if (po->name) {
751 "argument '%s'.\n", po->name, po->help, arg);
773 po->name && po->flags & OPT_BOOL) {
776 "argument 0.\n", po->name, po->help);
927 /* check stream specification in opt name */