| 129 | } |
| 130 | |
| 131 | int main(int argc, char **argv) |
| 132 | { |
| 133 | if (argc < 2) |
| 134 | print_usage(); |
| 135 | |
| 136 | if (!strcmp(argv[1], "format")) |
| 137 | show_format_opts(); |
| 138 | else if (!strcmp(argv[1], "codec")) |
| 139 | show_codec_opts(); |
| 140 | else |
| 141 | print_usage(); |
| 142 | |
| 143 | return 0; |
| 144 | } |
nothing calls this directly
no test coverage detected