michael@0: /******************************************************************** michael@0: * * michael@0: * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. * michael@0: * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * michael@0: * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * michael@0: * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * michael@0: * * michael@0: * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2009 * michael@0: * by the Xiph.Org Foundation and contributors http://www.xiph.org/ * michael@0: * * michael@0: ******************************************************************** michael@0: function: michael@0: last mod: $Id: x86cpu.h 17410 2010-09-21 21:53:48Z tterribe $ michael@0: michael@0: ********************************************************************/ michael@0: michael@0: #if !defined(_x86_x86cpu_H) michael@0: # define _x86_x86cpu_H (1) michael@0: #include "../internal.h" michael@0: michael@0: #define OC_CPU_X86_MMX (1<<0) michael@0: #define OC_CPU_X86_3DNOW (1<<1) michael@0: #define OC_CPU_X86_3DNOWEXT (1<<2) michael@0: #define OC_CPU_X86_MMXEXT (1<<3) michael@0: #define OC_CPU_X86_SSE (1<<4) michael@0: #define OC_CPU_X86_SSE2 (1<<5) michael@0: #define OC_CPU_X86_PNI (1<<6) michael@0: #define OC_CPU_X86_SSSE3 (1<<7) michael@0: #define OC_CPU_X86_SSE4_1 (1<<8) michael@0: #define OC_CPU_X86_SSE4_2 (1<<9) michael@0: #define OC_CPU_X86_SSE4A (1<<10) michael@0: #define OC_CPU_X86_SSE5 (1<<11) michael@0: michael@0: ogg_uint32_t oc_cpu_flags_get(void); michael@0: michael@0: #endif