mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
29 lines
1.3 KiB
C
29 lines
1.3 KiB
C
/********************************************************************
|
|
* *
|
|
* THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *
|
|
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
|
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
|
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
|
* *
|
|
* THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2010 *
|
|
* by the Xiph.Org Foundation and contributors *
|
|
* https://www.xiph.org/ *
|
|
* *
|
|
********************************************************************
|
|
function:
|
|
|
|
********************************************************************/
|
|
|
|
#if !defined(_arm_armcpu_H)
|
|
# define _arm_armcpu_H (1)
|
|
#include "../internal.h"
|
|
|
|
/*"Parallel instructions" from ARM v6 and above.*/
|
|
#define OC_CPU_ARM_MEDIA (1<<24)
|
|
/*Flags chosen to match arch/arm/include/asm/hwcap.h in the Linux kernel.*/
|
|
#define OC_CPU_ARM_EDSP (1<<7)
|
|
#define OC_CPU_ARM_NEON (1<<12)
|
|
|
|
ogg_uint32_t oc_cpu_flags_get(void);
|
|
|
|
#endif
|