| 3667 | } |
| 3668 | |
| 3669 | static void parse_matrix_coeffs(uint16_t *dest, const char *str) |
| 3670 | { |
| 3671 | int i; |
| 3672 | const char *p = str; |
| 3673 | for(i = 0;; i++) { |
| 3674 | dest[i] = atoi(p); |
| 3675 | if(i == 63) |
| 3676 | break; |
| 3677 | p = strchr(p, ','); |
| 3678 | if(!p) { |
| 3679 | fprintf(stderr, "Syntax error in matrix \"%s\" at coeff %d\n", str, i); |
| 3680 | av_exit(1); |
| 3681 | } |
| 3682 | p++; |
| 3683 | } |
| 3684 | } |
| 3685 | |
| 3686 | static void opt_inter_matrix(const char *arg) |
| 3687 | { |
no test coverage detected