From: Michel L. <wa...@us...> - 2001-09-12 05:50:52
|
Update of /cvsroot/libmpeg2/mpeg2dec/include In directory usw-pr-cvs1:/tmp/cvs-serv28781/include Modified Files: mm_accel.h Log Message: First pass of checkins for altivec IDCT. This should build on any compiler; however you will need a fairly recent version of binutils with support for altivec assembly. This is very untested, so if it breaks you get to keep both pieces :) Index: mm_accel.h =================================================================== RCS file: /cvsroot/libmpeg2/mpeg2dec/include/mm_accel.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mm_accel.h 2001/09/01 22:07:38 1.2 +++ mm_accel.h 2001/09/12 05:50:46 1.3 @@ -30,6 +30,9 @@ #define MM_ACCEL_X86_3DNOW 0x40000000 #define MM_ACCEL_X86_MMXEXT 0x20000000 +/* powerpc accelerations */ +#define MM_ACCEL_PPC_ALTIVEC 0x80000000 + uint32_t mm_accel (void); #endif /* MM_ACCEL_H */ |