Mercurial > mplayer.hg
changeset 28530:c86a4810a0f3
Document sws_normalizeVec().
author | stefano |
---|---|
date | Sat, 14 Feb 2009 19:37:13 +0000 |
parents | 382a28dbafc6 |
children | a14b65e14dc9 |
files | libswscale/swscale.h |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale.h Sat Feb 14 19:17:08 2009 +0000 +++ b/libswscale/swscale.h Sat Feb 14 19:37:13 2009 +0000 @@ -165,6 +165,11 @@ * Scales all the coefficients of \p a by the \p scalar value. */ void sws_scaleVec(SwsVector *a, double scalar); + +/** + * Scales all the coefficients of \p a so that their sum equals \p + * height." + */ void sws_normalizeVec(SwsVector *a, double height); void sws_convVec(SwsVector *a, SwsVector *b); void sws_addVec(SwsVector *a, SwsVector *b);