summaryrefslogtreecommitdiff
path: root/postproc/postprocess.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-10-30 21:02:21 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-10-30 21:02:21 +0000
commitfa6ea14e403d98ff3c413633e0a1f6652e40c51d (patch)
treef65a8f44b7afe4ac96cf984908a500efcef0b607 /postproc/postprocess.h
parent4407a3c47a1c39271e563df784616e4c1a0a41ca (diff)
per context cpuCaps (idea by kabi)
Originally committed as revision 7986 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/postprocess.h')
-rw-r--r--postproc/postprocess.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/postproc/postprocess.h b/postproc/postprocess.h
index 36f3566b6a..f638ad60e1 100644
--- a/postproc/postprocess.h
+++ b/postproc/postprocess.h
@@ -95,10 +95,9 @@ void pp_postprocess(uint8_t * src[3], int srcStride[3],
// name is the stuff after "-pp" on the command line
PPMode pp_get_mode_by_name_and_quality(char *name, int quality);
-pp_context *pp_get_context(int width, int height);
+pp_context *pp_get_context(int width, int height, int cpuCaps);
void pp_free_context(pp_context *ppContext);
-int pp_init(int cpuCaps);
#define PP_CPU_CAPS_MMX 0x80000000
#define PP_CPU_CAPS_MMX2 0x20000000
#define PP_CPU_CAPS_3DNOW 0x40000000