]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/swscale.h
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libswscale / swscale.h
index a9e803db4375105cf6aeeeaf7eee0059f4cae1f3..71cb5d8108c73a9a6a828e388b4dd69a4adceb14 100644 (file)
@@ -115,13 +115,13 @@ const int *sws_getCoefficients(int colorspace);
 
 // when used for filters they must have an odd number of elements
 // coeffs cannot be shared between vectors
-typedef struct {
+typedef struct SwsVector {
     double *coeff;              ///< pointer to the list of coefficients
     int length;                 ///< number of coefficients in the vector
 } SwsVector;
 
 // vectors can be shared
-typedef struct {
+typedef struct SwsFilter {
     SwsVector *lumH;
     SwsVector *lumV;
     SwsVector *chrH;