| 115 | } |
| 116 | |
| 117 | static void *opt_array_pelem(const AVOption *o, void *array, unsigned idx) |
| 118 | { |
| 119 | av_assert1(o->type & AV_OPT_TYPE_FLAG_ARRAY); |
| 120 | return (uint8_t *)array + idx * opt_type_desc[TYPE_BASE(o->type)].size; |
| 121 | } |
| 122 | |
| 123 | static unsigned *opt_array_pcount(const void *parray) |
| 124 | { |
no outgoing calls
no test coverage detected