# HG changeset patch # User michael # Date 1035943191 0 # Node ID ade6eb7abc2afdf31e2930592c1b7dcd46b9a7b2 # Parent 6d1103afba1cbf6b2353e542fc80e5b0c0cb1cf1 using same numbers for cpuCaps as libmpeg2 & liba52 diff -r 6d1103afba1c -r ade6eb7abc2a postproc/postprocess.h --- a/postproc/postprocess.h Wed Oct 30 01:51:14 2002 +0000 +++ b/postproc/postprocess.h Wed Oct 30 01:59:51 2002 +0000 @@ -97,8 +97,8 @@ 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