comparison libswscale/swscale.h @ 29494:86786d090e11

Introduce and use sws_allocVec().
author ramiro
date Wed, 19 Aug 2009 01:33:17 +0000
parents 037740689e99
children 7075d11f3535
comparison
equal deleted inserted replaced
29493:335da85c454c 29494:86786d090e11
180 int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, 180 int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table,
181 int *srcRange, int **table, int *dstRange, 181 int *srcRange, int **table, int *dstRange,
182 int *brightness, int *contrast, int *saturation); 182 int *brightness, int *contrast, int *saturation);
183 183
184 /** 184 /**
185 * Allocates and returns an uninitialized vector with length coefficients.
186 */
187 SwsVector *sws_allocVec(int length);
188
189 /**
185 * Returns a normalized Gaussian curve used to filter stuff 190 * Returns a normalized Gaussian curve used to filter stuff
186 * quality=3 is high quality, lower is lower quality. 191 * quality=3 is high quality, lower is lower quality.
187 */ 192 */
188 SwsVector *sws_getGaussianVec(double variance, double quality); 193 SwsVector *sws_getGaussianVec(double variance, double quality);
189 194