Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /******************************************************************** |
michael@0 | 2 | * * |
michael@0 | 3 | * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. * |
michael@0 | 4 | * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * |
michael@0 | 5 | * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * |
michael@0 | 6 | * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * |
michael@0 | 7 | * * |
michael@0 | 8 | * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2009 * |
michael@0 | 9 | * by the Xiph.Org Foundation and contributors http://www.xiph.org/ * |
michael@0 | 10 | * * |
michael@0 | 11 | ******************************************************************** |
michael@0 | 12 | function: |
michael@0 | 13 | last mod: $Id: x86cpu.h 17410 2010-09-21 21:53:48Z tterribe $ |
michael@0 | 14 | |
michael@0 | 15 | ********************************************************************/ |
michael@0 | 16 | |
michael@0 | 17 | #if !defined(_x86_x86cpu_H) |
michael@0 | 18 | # define _x86_x86cpu_H (1) |
michael@0 | 19 | #include "../internal.h" |
michael@0 | 20 | |
michael@0 | 21 | #define OC_CPU_X86_MMX (1<<0) |
michael@0 | 22 | #define OC_CPU_X86_3DNOW (1<<1) |
michael@0 | 23 | #define OC_CPU_X86_3DNOWEXT (1<<2) |
michael@0 | 24 | #define OC_CPU_X86_MMXEXT (1<<3) |
michael@0 | 25 | #define OC_CPU_X86_SSE (1<<4) |
michael@0 | 26 | #define OC_CPU_X86_SSE2 (1<<5) |
michael@0 | 27 | #define OC_CPU_X86_PNI (1<<6) |
michael@0 | 28 | #define OC_CPU_X86_SSSE3 (1<<7) |
michael@0 | 29 | #define OC_CPU_X86_SSE4_1 (1<<8) |
michael@0 | 30 | #define OC_CPU_X86_SSE4_2 (1<<9) |
michael@0 | 31 | #define OC_CPU_X86_SSE4A (1<<10) |
michael@0 | 32 | #define OC_CPU_X86_SSE5 (1<<11) |
michael@0 | 33 | |
michael@0 | 34 | ogg_uint32_t oc_cpu_flags_get(void); |
michael@0 | 35 | |
michael@0 | 36 | #endif |