Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / media / libtheora / lib / cpu.h
blob12ab32dbce3de3f2344bbff278c37cead094e05c
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 http://www.xiph.org/ *
10 * *
11 ********************************************************************
12 function:
13 last mod: $Id: cpu.h 13884 2007-09-22 08:38:10Z giles $
15 ********************************************************************/
17 #if !defined(_x86_cpu_H)
18 # define _x86_cpu_H (1)
19 #include "internal.h"
21 #define OC_CPU_X86_MMX (1<<0)
22 #define OC_CPU_X86_3DNOW (1<<1)
23 #define OC_CPU_X86_3DNOWEXT (1<<2)
24 #define OC_CPU_X86_MMXEXT (1<<3)
25 #define OC_CPU_X86_SSE (1<<4)
26 #define OC_CPU_X86_SSE2 (1<<5)
28 ogg_uint32_t oc_cpu_flags_get(void);
30 #endif