| 1325 | } |
| 1326 | |
| 1327 | void sws_scaleVec(SwsVector *a, double scalar) |
| 1328 | { |
| 1329 | int i; |
| 1330 | |
| 1331 | for (i=0; i<a->length; i++) |
| 1332 | a->coeff[i]*= scalar; |
| 1333 | } |
| 1334 | |
| 1335 | void sws_normalizeVec(SwsVector *a, double height) |
| 1336 | { |
no outgoing calls
no test coverage detected