| 76 | } |
| 77 | |
| 78 | static void show_opts(const AVClass *class) |
| 79 | { |
| 80 | const AVOption *o = NULL; |
| 81 | |
| 82 | printf("@table @option\n"); |
| 83 | while ((o = av_opt_next(&class, o))) |
| 84 | if (o->type != AV_OPT_TYPE_CONST) |
| 85 | print_option(class, o); |
| 86 | printf("@end table\n"); |
| 87 | } |
| 88 | |
| 89 | static void show_format_opts(void) |
| 90 | { |
no test coverage detected