diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-11 21:34:44 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-11 21:34:44 +0000 |
commit | b5fdaebb44f9d2351a4678183eee6d38f2709d1e (patch) | |
tree | a2e9b8045bd7c6ca7fd26cbaacf219b8dec1c024 /libswscale | |
parent | 5b4f5e5dff771de655556931fcfba50c31a545f7 (diff) | |
download | ffmpeg-b5fdaebb44f9d2351a4678183eee6d38f2709d1e.tar.gz |
Document sws_getIdentityVec().
Originally committed as revision 28533 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.h | 5 |
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); /** |