andrew@0
|
1 /*
|
andrew@0
|
2 Copyright (C) 2003 Paul Brossier
|
andrew@0
|
3
|
andrew@0
|
4 This program is free software; you can redistribute it and/or modify
|
andrew@0
|
5 it under the terms of the GNU General Public License as published by
|
andrew@0
|
6 the Free Software Foundation; either version 2 of the License, or
|
andrew@0
|
7 (at your option) any later version.
|
andrew@0
|
8
|
andrew@0
|
9 This program is distributed in the hope that it will be useful,
|
andrew@0
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
andrew@0
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
andrew@0
|
12 GNU General Public License for more details.
|
andrew@0
|
13
|
andrew@0
|
14 You should have received a copy of the GNU General Public License
|
andrew@0
|
15 along with this program; if not, write to the Free Software
|
andrew@0
|
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
andrew@0
|
17
|
andrew@0
|
18 */
|
andrew@0
|
19
|
andrew@0
|
20 #ifndef AUBIO_TYPES_H
|
andrew@0
|
21 #define AUBIO_TYPES_H
|
andrew@0
|
22
|
andrew@0
|
23 /** \file
|
andrew@0
|
24
|
andrew@0
|
25 Definition of data types used in aubio
|
andrew@0
|
26
|
andrew@0
|
27 \todo replace all known types with their alias (in midi*.[ch])
|
andrew@0
|
28
|
andrew@0
|
29 \todo add unknown types aliases (char, FILE)
|
andrew@0
|
30
|
andrew@0
|
31 \todo add OS switches
|
andrew@0
|
32
|
andrew@0
|
33 \todo add long/float switches
|
andrew@0
|
34
|
andrew@0
|
35 */
|
andrew@0
|
36
|
andrew@0
|
37 #ifdef __cplusplus
|
andrew@0
|
38 extern "C" {
|
andrew@0
|
39 #endif
|
andrew@0
|
40
|
andrew@0
|
41 /** short sample format (32 or 64 bits) */
|
andrew@0
|
42 typedef float smpl_t;
|
andrew@0
|
43 //typedef double smpl_t;
|
andrew@0
|
44 /** long sample format (64 bits or more) */
|
andrew@0
|
45 typedef double lsmp_t;
|
andrew@0
|
46 //typedef long lsmp_t;
|
andrew@0
|
47 /** unsigned integer */
|
andrew@0
|
48 typedef unsigned int ba_uint_t;
|
andrew@0
|
49 /** signed integer */
|
andrew@0
|
50 typedef int sint_t;
|
andrew@0
|
51 /** files */
|
andrew@0
|
52 //typedef FILE audio_file_t;
|
andrew@0
|
53
|
andrew@0
|
54 #ifdef __cplusplus
|
andrew@0
|
55 }
|
andrew@0
|
56 #endif
|
andrew@0
|
57
|
andrew@0
|
58 #endif/*AUBIO_TYPES_H*/
|