mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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
This commit is contained in:
parent
36661afe02
commit
b178f758fa
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user