Commit 19c07970 authored by michael's avatar michael

disabling vp3 mmx&mmx2 idcts, they must be ported over to the lavc idct API,...

disabling vp3 mmx&mmx2 idcts, they must be ported over to the lavc idct API, ill port the vp3 c idct


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4255 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dda34354
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment