Fix oggplay-dump-first-frame
[liboggplay.git] / src / liboggplay / cpu.h
blobb057bd36f36ffbf4f7775efa46559c382eb2eff7
1 /********************************************************************
2 * *
3 * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7 * *
8 * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2007 *
9 * by the Xiph.Org Foundation and contributors http://www.xiph.org/ *
10 * *
11 ********************************************************************
12 function:
13 last mod: $Id$
15 ********************************************************************/
17 #ifndef __CPU_H__
18 #define __CPU_H__
20 #define OC_CPU_X86_MMX (1<<0)
21 #define OC_CPU_X86_3DNOW (1<<1)
22 #define OC_CPU_X86_3DNOWEXT (1<<2)
23 #define OC_CPU_X86_MMXEXT (1<<3)
24 #define OC_CPU_X86_SSE (1<<4)
25 #define OC_CPU_X86_SSE2 (1<<5)
26 #define OC_CPU_X86_PNI (1<<6)
27 #define OC_CPU_X86_SSSE3 (1<<7)
28 #define OC_CPU_X86_SSE4_1 (1<<8)
29 #define OC_CPU_X86_SSE4_2 (1<<9)
30 #define OC_CPU_X86_SSE4A (1<<10)
31 #define OC_CPU_X86_SSE5 (1<<11)
32 #define OC_CPU_PPC_ALTIVEC (1<<12)
34 #endif