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

Function opt_array_sep

libavutil/opt.c:110–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110static uint8_t opt_array_sep(const AVOption *o)
111{
112 const AVOptionArrayDef *d = o->default_val.arr;
113 av_assert1(o->type & AV_OPT_TYPE_FLAG_ARRAY);
114 return (d && d->sep) ? d->sep : ',';
115}
116
117static void *opt_array_pelem(const AVOption *o, void *array, unsigned idx)
118{

Callers 3

opt_set_arrayFunction · 0.85
opt_get_arrayFunction · 0.85
av_opt_set_defaults2Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected