summaryrefslogtreecommitdiff
path: root/vpx_scale/x86_64/scalesystemdependant.c
diff options
context:
space:
mode:
Diffstat (limited to 'vpx_scale/x86_64/scalesystemdependant.c')
-rw-r--r--vpx_scale/x86_64/scalesystemdependant.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/vpx_scale/x86_64/scalesystemdependant.c b/vpx_scale/x86_64/scalesystemdependant.c
new file mode 100644
index 000000000..43f05a68c
--- /dev/null
+++ b/vpx_scale/x86_64/scalesystemdependant.c
@@ -0,0 +1,60 @@
+/*
+ * Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license and patent
+ * grant that can be found in the LICENSE file in the root of the source
+ * tree. All contributing project authors may be found in the AUTHORS
+ * file in the root of the source tree.
+ */
+
+
+/****************************************************************************
+*
+* Module Title : system_dependant.c
+*
+* Description : Miscellaneous system dependant functions
+*
+****************************************************************************/
+
+/****************************************************************************
+* Header Files
+****************************************************************************/
+#include "vpx_scale/vpxscale.h"
+#include "cpuidlib.h"
+
+/****************************************************************************
+* Imports
+*****************************************************************************/
+extern void register_generic_scalers(void);
+extern void register_mmxscalers(void);
+
+/****************************************************************************
+ *
+ * ROUTINE : post_proc_machine_specific_config
+ *
+ * INPUTS : UINT32 Version : Codec version number.
+ *
+ * OUTPUTS : None.
+ *
+ * RETURNS : void
+ *
+ * FUNCTION : Checks for machine specifc features such as MMX support
+ * sets appropriate flags and function pointers.
+ *
+ * SPECIAL NOTES : None.
+ *
+ ****************************************************************************/
+void
+vp8_scale_machine_specific_config(void)
+{
+ int wmt_enabled = 1;
+
+ if (wmt_enabled)
+ {
+ register_mmxscalers();
+ }
+ else
+ {
+ register_generic_scalers();
+ }
+}