Mercurial > mplayer.hg
changeset 28490:333cb4dd0ceb
Document sws_scaleVec().
author | stefano |
---|---|
date | Tue, 10 Feb 2009 23:38:01 +0000 |
parents | 02f445ffbccd |
children | c30fa7f74789 |
files | libswscale/swscale.h |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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);