From 9993e6b2aa1dd41c95f1c06e1c8dfb21adf2abe8 Mon Sep 17 00:00:00 2001 From: stefano Date: Mon, 9 Feb 2009 23:42:16 +0000 Subject: [PATCH] Document coeff and length fields in SwsVector. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@28512 b3059339-0415-0410-9bf9-f77b7e298cf2 --- swscale.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swscale.h b/swscale.h index 2c3f6c3..a1764d8 100644 --- a/swscale.h +++ b/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 -- 2.11.4.GIT