| 138 | } |
| 139 | |
| 140 | void show_help_children(const AVClass *class, int flags) |
| 141 | { |
| 142 | void *iter = NULL; |
| 143 | const AVClass *child; |
| 144 | if (class->option) { |
| 145 | av_opt_show2(&class, NULL, flags, 0); |
| 146 | printf("\n"); |
| 147 | } |
| 148 | |
| 149 | while (child = av_opt_child_class_iterate(class, &iter)) |
| 150 | show_help_children(child, flags); |
| 151 | } |
| 152 | |
| 153 | static const OptionDef *find_option(const OptionDef *po, const char *name) |
| 154 | { |
no test coverage detected