diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-08-25 03:00:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-08-25 03:00:51 +0000 |
commit | d593e329832a432777218eb92469bad10594a3c5 (patch) | |
tree | 729557ca1d10a888887e887be4c86c87d84e8a10 /libavcodec/i386 | |
parent | 830bf1f20d8087e76e3070840c02be7056cf781f (diff) | |
download | ffmpeg-d593e329832a432777218eb92469bad10594a3c5.tar.gz |
use 16bit IDWT (a SIMD implementation of it should be >2x faster then with
the old 32bit code)
disable mmx/sse2 optimizations as they need a rewrite now
Originally committed as revision 10218 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 64431b200e..6540db2504 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -3621,6 +3621,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) #endif #ifdef CONFIG_SNOW_DECODER +#if 0 if(mm_flags & MM_SSE2){ c->horizontal_compose97i = ff_snow_horizontal_compose97i_sse2; c->vertical_compose97i = ff_snow_vertical_compose97i_sse2; @@ -3632,6 +3633,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) c->inner_add_yblock = ff_snow_inner_add_yblock_mmx; } #endif +#endif if(mm_flags & MM_3DNOW){ #ifdef CONFIG_ENCODERS |