mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
Document sws_getConstVec().
Originally committed as revision 28524 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
b954b34a6d
commit
c326825e51
@ -130,6 +130,11 @@ int sws_scale_ordered(struct SwsContext *context, uint8_t* src[], int srcStride[
|
||||
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);
|
||||
int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation);
|
||||
SwsVector *sws_getGaussianVec(double variance, double quality);
|
||||
|
||||
/**
|
||||
* Allocates and returns a vector with \p lenght coefficients, all
|
||||
* with the same value \p c.
|
||||
*/
|
||||
SwsVector *sws_getConstVec(double c, int length);
|
||||
SwsVector *sws_getIdentityVec(void);
|
||||
void sws_scaleVec(SwsVector *a, double scalar);
|
||||
|
Loading…
Reference in New Issue
Block a user