summaryrefslogtreecommitdiffstats
path: root/postproc/swscale.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-01 14:01:22 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-01 14:01:22 +0000
commit91438d4597137998722a7fd521089e957d04aa16 (patch)
treed5e898f08e26b6f43a855b2c8b8615cc4a56e636 /postproc/swscale.h
parent57c7eef3603855a204328680916ffc5557229056 (diff)
downloadmpv-91438d4597137998722a7fd521089e957d04aa16.tar.bz2
mpv-91438d4597137998722a7fd521089e957d04aa16.tar.xz
overread in the mmx2 horizontal scaler fixed
2% faster horizontal mmx2 scaler git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5453 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/swscale.h')
-rw-r--r--postproc/swscale.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/postproc/swscale.h b/postproc/swscale.h
index 03b63a6501..97584672da 100644
--- a/postproc/swscale.h
+++ b/postproc/swscale.h
@@ -69,6 +69,10 @@ typedef struct SwsContext{
uint8_t __attribute__((aligned(32))) funnyYCode[10000];
uint8_t __attribute__((aligned(32))) funnyUVCode[10000];
+ int32_t *lumMmx2FilterPos;
+ int32_t *chrMmx2FilterPos;
+ int16_t *lumMmx2Filter;
+ int16_t *chrMmx2Filter;
int canMMX2BeUsed;