| 1064 | } |
| 1065 | |
| 1066 | int opt_cpuflags(void *optctx, const char *opt, const char *arg) |
| 1067 | { |
| 1068 | int ret; |
| 1069 | unsigned flags = av_get_cpu_flags(); |
| 1070 | |
| 1071 | if ((ret = av_parse_cpu_caps(&flags, arg)) < 0) |
| 1072 | return ret; |
| 1073 | |
| 1074 | av_force_cpu_flags(flags); |
| 1075 | return 0; |
| 1076 | } |
| 1077 | |
| 1078 | int opt_cpucount(void *optctx, const char *opt, const char *arg) |
| 1079 | { |
nothing calls this directly
no test coverage detected