diff options
author | stefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-10 23:45:50 +0000 |
---|---|---|
committer | stefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-10 23:45:50 +0000 |
commit | 22131f75ee940f203ee5aa892e26954472ac49c1 (patch) | |
tree | 3d56f1b666da11be5712e4939bf14aba384f100f | |
parent | 87befb386ef85663d862f8a385d67553439ad066 (diff) |
Move sws_getGaussianVec() documentation from swscale.c to swscale.h.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28528 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libswscale/swscale.c | 4 | ||||
-rw-r--r-- | libswscale/swscale.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 11c2a4f681..586715eacd 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -2885,10 +2885,6 @@ SwsFilter *sws_getDefaultFilter(float lumaGBlur, float chromaGBlur, return filter; } -/** - * Returns a normalized Gaussian curve used to filter stuff - * quality=3 is high quality, lower is lower quality. - */ SwsVector *sws_getGaussianVec(double variance, double quality){ const int length= (int)(variance*quality + 0.5) | 1; int i; diff --git a/libswscale/swscale.h b/libswscale/swscale.h index f4bbb872db..5fc5ed6e95 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -129,6 +129,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); + +/** + * Returns a normalized Gaussian curve used to filter stuff + * quality=3 is high quality, lower is lower quality. + */ SwsVector *sws_getGaussianVec(double variance, double quality); /** |