summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-10 23:38:01 +0000
committerstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-10 23:38:01 +0000
commitbea91aaf7b8b1e0807c6f67a2a03cedee73a4b31 (patch)
tree4dd20be2709df9603759f5e5094674e8748c9caa /libswscale/swscale.h
parent6ea82ed46c3c42ae002f31c1018af41b30aecdbb (diff)
downloadmpv-bea91aaf7b8b1e0807c6f67a2a03cedee73a4b31.tar.bz2
mpv-bea91aaf7b8b1e0807c6f67a2a03cedee73a4b31.tar.xz
Document sws_scaleVec().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28525 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r--libswscale/swscale.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index a20b5e2159..ffad6dd661 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -137,6 +137,10 @@ SwsVector *sws_getGaussianVec(double variance, double quality);
*/
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);