MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / opt_find

Function opt_find

fftools/cmdutils.c:589–596  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

587}
588
589static const AVOption *opt_find(void *obj, const char *name, const char *unit,
590 int opt_flags, int search_flags)
591{
592 const AVOption *o = av_opt_find(obj, name, unit, opt_flags, search_flags);
593 if(o && !o->flags)
594 return NULL;
595 return o;
596}
597
598#define FLAGS ((o->type == AV_OPT_TYPE_FLAGS && (arg[0]=='-' || arg[0]=='+')) ? AV_DICT_APPEND : 0)
599int opt_default(void *optctx, const char *opt, const char *arg)

Callers 1

opt_defaultFunction · 0.85

Calls 1

av_opt_findFunction · 0.85

Tested by

no test coverage detected