| 108 | } |
| 109 | |
| 110 | static 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 | |
| 117 | static void *opt_array_pelem(const AVOption *o, void *array, unsigned idx) |
| 118 | { |
no outgoing calls
no test coverage detected