using same numbers for cpuCaps as libmpeg2 & liba52

Originally committed as revision 7974 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
Michael Niedermayer 2002-10-30 01:59:51 +00:00
parent 4603ed8f91
commit b49d916512

View File

@ -97,8 +97,8 @@ void *pp_get_context(int width, int height);
void pp_free_context(void *ppContext);
int pp_init(int cpuCaps);
#define PP_CPU_CAPS_MMX 1
#define PP_CPU_CAPS_MMX2 2
#define PP_CPU_CAPS_3DNOW 4
#define PP_CPU_CAPS_MMX 0x80000000
#define PP_CPU_CAPS_MMX2 0x20000000
#define PP_CPU_CAPS_3DNOW 0x40000000
#endif