Mercurial > mplayer.hg
changeset 28477:c01c5cffba71
Document coeff and length fields in SwsVector.
author | stefano |
---|---|
date | Mon, 09 Feb 2009 23:42:16 +0000 |
parents | 01466cb526ce |
children | 974bbcbac1eb |
files | libswscale/swscale.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale.h Mon Feb 09 23:37:51 2009 +0000 +++ b/libswscale/swscale.h Mon Feb 09 23:42:16 2009 +0000 @@ -98,8 +98,8 @@ // 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