media/libtheora/lib/x86/x86cpu.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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-2009                *
     9  * by the Xiph.Org Foundation and contributors http://www.xiph.org/ *
    10  *                                                                  *
    11  ********************************************************************
    12  function:
    13     last mod: $Id: x86cpu.h 17410 2010-09-21 21:53:48Z tterribe $
    15  ********************************************************************/
    17 #if !defined(_x86_x86cpu_H)
    18 # define _x86_x86cpu_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)
    27 #define OC_CPU_X86_PNI      (1<<6)
    28 #define OC_CPU_X86_SSSE3    (1<<7)
    29 #define OC_CPU_X86_SSE4_1   (1<<8)
    30 #define OC_CPU_X86_SSE4_2   (1<<9)
    31 #define OC_CPU_X86_SSE4A    (1<<10)
    32 #define OC_CPU_X86_SSE5     (1<<11)
    34 ogg_uint32_t oc_cpu_flags_get(void);
    36 #endif

mercurial