diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 09:11:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 09:11:48 +0000 |
commit | b178f758fae759f9e2d3f02961bd0cd3d04c0d0a (patch) | |
tree | f63621e06f5afd3e301a5a775e7805ef30aec7da | |
parent | 36661afe022ef048f702d03ca957b743fb38758d (diff) | |
download | ffmpeg-b178f758fae759f9e2d3f02961bd0cd3d04c0d0a.tar.gz |
disabling vp3 mmx&mmx2 idcts, they must be ported over to the lavc idct API, ill port the vp3 c idct
Originally committed as revision 4255 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 7beeabf3ca..ee9d147b84 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -3200,13 +3200,13 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) } /* VP3 optimized DSP functions */ - if (mm_flags & MM_SSE2) { - c->vp3_dsp_init = vp3_dsp_init_sse2; - c->vp3_idct = vp3_idct_sse2; - } else { - c->vp3_dsp_init = vp3_dsp_init_mmx; - c->vp3_idct = vp3_idct_mmx; - } +// if (mm_flags & MM_SSE2) { +// c->vp3_dsp_init = vp3_dsp_init_sse2; +// c->vp3_idct = vp3_idct_sse2; +// } else { +// c->vp3_dsp_init = vp3_dsp_init_mmx; +// c->vp3_idct = vp3_idct_mmx; +// } #ifdef CONFIG_ENCODERS c->get_pixels = get_pixels_mmx; |