summaryrefslogtreecommitdiffstats
path: root/libswscale
diff options
context:
space:
mode:
authorstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-11 21:34:44 +0000
committerstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-11 21:34:44 +0000
commitf9e26397b7cb65e08dcc6d87dfb3d8c85fca2dcf (patch)
tree2c4bbbe152da31d1822a4a479a9a5d2af6263d72 /libswscale
parentddb3438718e03db1f38bf8cf52a561b619bc2bef (diff)
downloadmpv-f9e26397b7cb65e08dcc6d87dfb3d8c85fca2dcf.tar.bz2
mpv-f9e26397b7cb65e08dcc6d87dfb3d8c85fca2dcf.tar.xz
Document sws_getIdentityVec().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28533 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index 5fc5ed6e95..cd86308a3e 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -141,6 +141,11 @@ SwsVector *sws_getGaussianVec(double variance, double quality);
* with the same value \p c.
*/
SwsVector *sws_getConstVec(double c, int length);
+
+/**
+ * Allocates and returns a vector with just one coefficient, with
+ * value 1.0.
+ */
SwsVector *sws_getIdentityVec(void);
/**