# HG changeset patch # User stefano # Date 1234309081 0 # Node ID 333cb4dd0ceb4c39fed038576879b4990a8dd9cb # Parent 02f445ffbccd66d3ef734967d68d1846f19f4549 Document sws_scaleVec(). diff -r 02f445ffbccd -r 333cb4dd0ceb libswscale/swscale.h --- a/libswscale/swscale.h Tue Feb 10 23:32:16 2009 +0000 +++ b/libswscale/swscale.h Tue Feb 10 23:38:01 2009 +0000 @@ -137,6 +137,10 @@ */ SwsVector *sws_getConstVec(double c, int length); SwsVector *sws_getIdentityVec(void); + +/** + * Scales all the coefficients of \p a by the \p scalar value. + */ void sws_scaleVec(SwsVector *a, double scalar); void sws_normalizeVec(SwsVector *a, double height); void sws_convVec(SwsVector *a, SwsVector *b);