| 204 | } |
| 205 | |
| 206 | void show_help_children(const AVClass *class, int flags) |
| 207 | { |
| 208 | const AVClass *child = NULL; |
| 209 | if (class->option) { |
| 210 | av_opt_show2(&class, NULL, flags, 0); |
| 211 | printf("\n"); |
| 212 | } |
| 213 | |
| 214 | while (child = av_opt_child_class_next(class, child)) |
| 215 | show_help_children(child, flags); |
| 216 | } |
| 217 | |
| 218 | static const OptionDef *find_option(const OptionDef *po, const char *name) |
| 219 | { |
no outgoing calls
no test coverage detected