Browse Source

Document coeff and length fields in SwsVector.

Originally committed as revision 28512 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Stefano Sabatini 17 years ago
parent
commit
edbdf77ec5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswscale/swscale.h

+ 2
- 2
libswscale/swscale.h View File

@@ -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


Loading…
Cancel
Save