1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Document sws_getIdentityVec().

Originally committed as revision 28533 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Stefano Sabatini 2009-02-11 21:34:44 +00:00
parent 5b4f5e5dff
commit b5fdaebb44

View File

@ -141,6 +141,11 @@ SwsVector *sws_getGaussianVec(double variance, double quality);
* with the same value \p c. * with the same value \p c.
*/ */
SwsVector *sws_getConstVec(double c, int length); SwsVector *sws_getConstVec(double c, int length);
/**
* Allocates and returns a vector with just one coefficient, with
* value 1.0.
*/
SwsVector *sws_getIdentityVec(void); SwsVector *sws_getIdentityVec(void);
/** /**