[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/i386 dsputil_mmx.c, 1.91, 1.92
Michael Niedermayer CVS
michael
Tue May 17 11:11:52 CEST 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec/i386
In directory mail:/var2/tmp/cvs-serv28223
Modified Files:
dsputil_mmx.c
Log Message:
disabling vp3 mmx&mmx2 idcts, they must be ported over to the lavc idct API, ill port the vp3 c idct
Index: dsputil_mmx.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/i386/dsputil_mmx.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- dsputil_mmx.c 8 May 2005 18:48:19 -0000 1.91
+++ dsputil_mmx.c 17 May 2005 09:11:48 -0000 1.92
@@ -3200,13 +3200,13 @@
}
/* 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;
More information about the ffmpeg-cvslog
mailing list