| 112 | } |
| 113 | |
| 114 | static void show_codec_opts(void) |
| 115 | { |
| 116 | void *iter = NULL; |
| 117 | const AVCodec *c; |
| 118 | |
| 119 | printf("@section Generic codec AVOptions\n"); |
| 120 | show_opts(avcodec_get_class()); |
| 121 | |
| 122 | printf("@section Codec-specific AVOptions\n"); |
| 123 | while ((c = av_codec_iterate(&iter))) { |
| 124 | if (!c->priv_class) |
| 125 | continue; |
| 126 | printf("@subsection %s AVOptions\n", c->priv_class->class_name); |
| 127 | show_opts(c->priv_class); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | int main(int argc, char **argv) |
| 132 | { |
no test coverage detected