summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-30 01:59:51 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-30 01:59:51 +0000
commit0df5aa5a351637197e5c5dc2f255db1a14097172 (patch)
tree15bc17108ff1f4888be97b77127c13f2aac3509e /postproc
parentf8456285fb72e3456fc0f605df4c3c361e09837f (diff)
downloadmpv-0df5aa5a351637197e5c5dc2f255db1a14097172.tar.bz2
mpv-0df5aa5a351637197e5c5dc2f255db1a14097172.tar.xz
using same numbers for cpuCaps as libmpeg2 & liba52
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7974 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/postprocess.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/postproc/postprocess.h b/postproc/postprocess.h
index c51044eeaf..4caba6d4e2 100644
--- a/postproc/postprocess.h
+++ b/postproc/postprocess.h
@@ -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