diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-30 01:59:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-30 01:59:51 +0000 |
commit | b49d916512b045ebcd24235ee654e23d8377cb4b (patch) | |
tree | 71e55864a45f041a052576e20815c49512618ae6 | |
parent | 4603ed8f913b6af404c57284992e5eec92bf3eae (diff) | |
download | ffmpeg-b49d916512b045ebcd24235ee654e23d8377cb4b.tar.gz |
using same numbers for cpuCaps as libmpeg2 & liba52
Originally committed as revision 7974 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
-rw-r--r-- | postproc/postprocess.h | 6 |
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 |