diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-01-21 22:11:09 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-01-21 22:11:09 +0000 |
commit | 5521b193d610bd9e575eda9478b2c3c3c87b7d46 (patch) | |
tree | 1309f8e4f20fa7e3e20af01c330b356dbb57b71e /postproc/swscale.h | |
parent | fe8054c0ff4ef8fa626a701b759d80f38def5710 (diff) | |
download | ffmpeg-5521b193d610bd9e575eda9478b2c3c3c87b7d46.tar.gz |
15/16 bit dithering in C (5% slower, can be disabled by comenting #define DITHER1XBPP out)
x/yInc bugfix (bug was introduced during the global var removial)
more emms & no messing with ARCH_X86 (=workaround against not cleared mmx state somewhere)
sharpening filter (-ssf cs=<int> & -ssf ls=<int>)
Originally committed as revision 4298 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.h')
-rw-r--r-- | postproc/swscale.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postproc/swscale.h b/postproc/swscale.h index d28ebf1e4e..fb47ab8bdb 100644 --- a/postproc/swscale.h +++ b/postproc/swscale.h @@ -108,6 +108,7 @@ extern void (*swScale)(SwsContext *context, uint8_t* src[], int srcStride[], int int srcSliceH, uint8_t* dst[], int dstStride[]); SwsVector *getGaussianVec(double variance, double quality); +SwsVector *getConstVec(double c, int length); SwsVector *getIdentityVec(void); void scaleVec(SwsVector *a, double scalar); void normalizeVec(SwsVector *a, double height); |