summaryrefslogtreecommitdiffstats
path: root/postproc/swscale.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-21 22:11:09 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-21 22:11:09 +0000
commitdf864731f8354ca4fea9ca5ee4450c61f4a9c0b9 (patch)
treee5cae283403ff2a7a6f1b96d58529a1a04122f1a /postproc/swscale.h
parentd8644277a9140861b94c4653c9db2736911d36d3 (diff)
downloadmpv-df864731f8354ca4fea9ca5ee4450c61f4a9c0b9.tar.bz2
mpv-df864731f8354ca4fea9ca5ee4450c61f4a9c0b9.tar.xz
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>) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4298 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/swscale.h')
-rw-r--r--postproc/swscale.h1
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);