| 1403 | } |
| 1404 | |
| 1405 | void sws_shiftVec(SwsVector *a, int shift) |
| 1406 | { |
| 1407 | SwsVector *shifted= sws_getShiftedVec(a, shift); |
| 1408 | av_free(a->coeff); |
| 1409 | a->coeff= shifted->coeff; |
| 1410 | a->length= shifted->length; |
| 1411 | av_free(shifted); |
| 1412 | } |
| 1413 | |
| 1414 | void sws_addVec(SwsVector *a, SwsVector *b) |
| 1415 | { |
no test coverage detected