diff options
author | stefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-09 23:42:16 +0000 |
---|---|---|
committer | stefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-09 23:42:16 +0000 |
commit | 832dbfeaa3a7f603d86ed7077749d252b6cb24e0 (patch) | |
tree | 945cc5e240f06c65a3837d1d31e17c0b9d94e1a9 | |
parent | 56c1aa89119558c02f4ce1cbe9ae6fdf526e81ab (diff) |
Document coeff and length fields in SwsVector.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28512 b3059339-0415-0410-9bf9-f77b7e298cf2
-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 |