diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-30 01:51:14 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-30 01:51:14 +0000 |
commit | 4603ed8f913b6af404c57284992e5eec92bf3eae (patch) | |
tree | e0a5c0d42cf4b2a747e4aa57c87bf5737394b489 /postproc/postprocess.h | |
parent | 51e19dccc75db1a0cbc467df9fb646993ffc513d (diff) | |
download | ffmpeg-4603ed8f913b6af404c57284992e5eec92bf3eae.tar.gz |
cleanly passing the cpuCaps
Originally committed as revision 7973 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/postprocess.h')
-rw-r--r-- | postproc/postprocess.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/postproc/postprocess.h b/postproc/postprocess.h index 79eb9387c8..c51044eeaf 100644 --- a/postproc/postprocess.h +++ b/postproc/postprocess.h @@ -96,4 +96,9 @@ PPMode pp_get_mode_by_name_and_quality(char *name, int quality); 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 + #endif |