diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-04-01 14:01:22 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-04-01 14:01:22 +0000 |
commit | b7dc6f662868fbdad779c61c233b1d19d8b89d3c (patch) | |
tree | aca693b69edc5854de0cc998a5c8167e3670b927 /postproc/swscale.h | |
parent | 0344cd0a7cc91e49637b85221a61aede8e9bd888 (diff) | |
download | ffmpeg-b7dc6f662868fbdad779c61c233b1d19d8b89d3c.tar.gz |
overread in the mmx2 horizontal scaler fixed
2% faster horizontal mmx2 scaler
Originally committed as revision 5453 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.h')
-rw-r--r-- | postproc/swscale.h | 4 |
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; |