| 3655 | } |
| 3656 | |
| 3657 | static int opt_format(void *optctx, const char *opt, const char *arg) |
| 3658 | { |
| 3659 | file_iformat = av_find_input_format(arg); |
| 3660 | if (!file_iformat) { |
| 3661 | av_log(NULL, AV_LOG_FATAL, "Unknown input format: %s\n", arg); |
| 3662 | return AVERROR(EINVAL); |
| 3663 | } |
| 3664 | return 0; |
| 3665 | } |
| 3666 | |
| 3667 | static int opt_sync(void *optctx, const char *opt, const char *arg) |
| 3668 | { |
nothing calls this directly
no test coverage detected