[Mplayer-cvslog] CVS: main/libmpcodecs vf_scale.c,1.50,1.51
Michael Niedermayer CVS
syncmail at mplayerhq.hu
Thu Mar 11 18:58:13 CET 2004
- Previous message: [Mplayer-cvslog] CVS: main/postproc swscale_altivec_template.c, NONE, 1.1 swscale.c, 1.136, 1.137 swscale.h, 1.30, 1.31 swscale_template.c, 1.104, 1.105
- Next message: [Mplayer-cvslog] CVS: main/libvo geometry.h, 1.5, 1.6 geometry.c, 1.11, 1.12 x11_common.c, 1.164, 1.165
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Michael Niedermayer CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv8925/libmpcodecs
Modified Files:
vf_scale.c
Log Message:
AltiVec support in postproc/ + altivec optimizations for yuv2yuvX patch by (Romain Dolbeau <dolbeau at irisa dot fr>)
Index: vf_scale.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_scale.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- vf_scale.c 29 Dec 2003 14:16:07 -0000 1.50
+++ vf_scale.c 11 Mar 2004 17:58:11 -0000 1.51
@@ -469,7 +469,8 @@
return
(gCpuCaps.hasMMX ? SWS_CPU_CAPS_MMX : 0)
| (gCpuCaps.hasMMX2 ? SWS_CPU_CAPS_MMX2 : 0)
- | (gCpuCaps.has3DNow ? SWS_CPU_CAPS_3DNOW : 0);
+ | (gCpuCaps.has3DNow ? SWS_CPU_CAPS_3DNOW : 0)
+ | (gCpuCaps.hasAltiVec ? SWS_CPU_CAPS_ALTIVEC : 0);
}
void sws_getFlagsAndFilterFromCmdLine(int *flags, SwsFilter **srcFilterParam, SwsFilter **dstFilterParam)
- Previous message: [Mplayer-cvslog] CVS: main/postproc swscale_altivec_template.c, NONE, 1.1 swscale.c, 1.136, 1.137 swscale.h, 1.30, 1.31 swscale_template.c, 1.104, 1.105
- Next message: [Mplayer-cvslog] CVS: main/libvo geometry.h, 1.5, 1.6 geometry.c, 1.11, 1.12 x11_common.c, 1.164, 1.165
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list