diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-09 23:42:16 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-09 23:42:16 +0000 |
commit | edbdf77ec502b9428fa83e86480ec7ed763458bd (patch) | |
tree | 6b8196ebda97811964592eb1296f58d77ebfe481 /libswscale | |
parent | 26f3ae828b38f70dd6ac4abaf1be697fa861eab6 (diff) | |
download | ffmpeg-edbdf77ec502b9428fa83e86480ec7ed763458bd.tar.gz |
Document coeff and length fields in SwsVector.
Originally committed as revision 28512 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 2c3f6c34ff..a1764d8d75 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -98,8 +98,8 @@ unsigned swscale_version(void); // when used for filters they must have an odd number of elements // coeffs cannot be shared between vectors typedef struct { - double *coeff; - int length; + double *coeff; ///< pointer to the list of coefficients + int length; ///< number of coefficients in the vector } SwsVector; // vectors can be shared |