mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
32 lines
1.3 KiB
C
32 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_armbits_H)
|
|
# define _arm_armbits_H (1)
|
|
# include "../bitpack.h"
|
|
# include "armcpu.h"
|
|
|
|
# if defined(OC_ARM_ASM)
|
|
# define oc_pack_read oc_pack_read_arm
|
|
# define oc_pack_read1 oc_pack_read1_arm
|
|
# define oc_huff_token_decode oc_huff_token_decode_arm
|
|
# endif
|
|
|
|
long oc_pack_read_arm(oc_pack_buf *_b,int _bits);
|
|
int oc_pack_read1_arm(oc_pack_buf *_b);
|
|
int oc_huff_token_decode_arm(oc_pack_buf *_b,const ogg_int16_t *_tree);
|
|
|
|
#endif
|