comparison libswscale/swscale.h @ 28491:c30fa7f74789

Fix typo: lenght -> length.
author stefano
date Tue, 10 Feb 2009 23:40:58 +0000
parents 333cb4dd0ceb
children d31543ec920a
comparison
equal deleted inserted replaced
28490:333cb4dd0ceb 28491:c30fa7f74789
130 int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation); 130 int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation);
131 int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation); 131 int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation);
132 SwsVector *sws_getGaussianVec(double variance, double quality); 132 SwsVector *sws_getGaussianVec(double variance, double quality);
133 133
134 /** 134 /**
135 * Allocates and returns a vector with \p lenght coefficients, all 135 * Allocates and returns a vector with \p length coefficients, all
136 * with the same value \p c. 136 * with the same value \p c.
137 */ 137 */
138 SwsVector *sws_getConstVec(double c, int length); 138 SwsVector *sws_getConstVec(double c, int length);
139 SwsVector *sws_getIdentityVec(void); 139 SwsVector *sws_getIdentityVec(void);
140 140