annotate src/libvorbis-1.3.3/lib/lookup.h @ 22:b07fe9e906dc
Portaudio: add missed file
author |
Chris Cannam |
date |
Tue, 26 Mar 2013 12:14:11 +0000 |
parents |
05aa0afa9217 |
children |
|
rev |
line source |
Chris@1
|
1 /********************************************************************
|
Chris@1
|
2 * *
|
Chris@1
|
3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
|
Chris@1
|
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
Chris@1
|
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
Chris@1
|
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
Chris@1
|
7 * *
|
Chris@1
|
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
|
Chris@1
|
9 * by the Xiph.Org Foundation http://www.xiph.org/ *
|
Chris@1
|
10 * *
|
Chris@1
|
11 ********************************************************************
|
Chris@1
|
12
|
Chris@1
|
13 function: lookup based functions
|
Chris@1
|
14 last mod: $Id: lookup.h 16227 2009-07-08 06:58:46Z xiphmont $
|
Chris@1
|
15
|
Chris@1
|
16 ********************************************************************/
|
Chris@1
|
17
|
Chris@1
|
18 #ifndef _V_LOOKUP_H_
|
Chris@1
|
19
|
Chris@1
|
20 #ifdef FLOAT_LOOKUP
|
Chris@1
|
21 extern float vorbis_coslook(float a);
|
Chris@1
|
22 extern float vorbis_invsqlook(float a);
|
Chris@1
|
23 extern float vorbis_invsq2explook(int a);
|
Chris@1
|
24 extern float vorbis_fromdBlook(float a);
|
Chris@1
|
25 #endif
|
Chris@1
|
26 #ifdef INT_LOOKUP
|
Chris@1
|
27 extern long vorbis_invsqlook_i(long a,long e);
|
Chris@1
|
28 extern long vorbis_coslook_i(long a);
|
Chris@1
|
29 extern float vorbis_fromdBlook_i(long a);
|
Chris@1
|
30 #endif
|
Chris@1
|
31
|
Chris@1
|
32 #endif
|