andrew@0
|
1 /*
|
andrew@0
|
2 Copyright (C) 2003 Paul Brossier <piem@altern.org>
|
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 /** \mainpage
|
andrew@0
|
21 *
|
andrew@0
|
22 * \section whatis Introduction
|
andrew@0
|
23 *
|
andrew@0
|
24 * Aubio is a library for audio labelling: it provides functions for pitch
|
andrew@0
|
25 * estimation, onset detection, beat tracking, and other annotation tasks.
|
andrew@0
|
26 *
|
andrew@0
|
27 * \verbinclude README
|
andrew@0
|
28 *
|
andrew@0
|
29 * \section bugs bugs and todo
|
andrew@0
|
30 *
|
andrew@0
|
31 * This software is under development. It needs debugging and
|
andrew@0
|
32 * optimisations.
|
andrew@0
|
33 *
|
andrew@0
|
34 * See <a href='bug.html'>bugs</a> and <a href='todo.html'>todo</a> lists.
|
andrew@0
|
35 *
|
andrew@0
|
36 */
|
andrew@0
|
37
|
andrew@0
|
38 #ifndef AUBIO_H
|
andrew@0
|
39 #define AUBIO_H
|
andrew@0
|
40
|
andrew@0
|
41 /**
|
andrew@0
|
42 * Global Aubio include file.
|
andrew@0
|
43 * Programmers just need to include this file as:
|
andrew@0
|
44 *
|
andrew@0
|
45 * @code
|
andrew@0
|
46 * #include <aubio/aubio.h>
|
andrew@0
|
47 * @endcode
|
andrew@0
|
48 *
|
andrew@0
|
49 * @file aubio.h
|
andrew@0
|
50 */
|
andrew@0
|
51
|
andrew@0
|
52 #ifdef __cplusplus
|
andrew@0
|
53 extern "C" {
|
andrew@0
|
54 #endif
|
andrew@0
|
55
|
andrew@0
|
56 /* first the generated config file */
|
andrew@0
|
57 #include "config.h"
|
andrew@0
|
58
|
andrew@0
|
59 /* in this order */
|
andrew@0
|
60 #include "types.h"
|
andrew@0
|
61 #include "sample.h"
|
andrew@0
|
62 #include "fft.h"
|
andrew@0
|
63 #include "phasevoc.h"
|
andrew@0
|
64 #include "mathutils.h"
|
andrew@0
|
65 #include "scale.h"
|
andrew@0
|
66 #include "hist.h"
|
andrew@0
|
67 #include "onsetdetection.h"
|
andrew@0
|
68 #include "tss.h"
|
andrew@0
|
69 #include "resample.h"
|
andrew@0
|
70 #include "peakpick.h"
|
andrew@0
|
71 #include "biquad.h"
|
andrew@0
|
72 #include "filter.h"
|
andrew@0
|
73 #include "pitchdetection.h"
|
andrew@0
|
74 #include "pitchmcomb.h"
|
andrew@0
|
75 #include "pitchyin.h"
|
andrew@0
|
76 #include "pitchyinfft.h"
|
andrew@0
|
77 #include "pitchschmitt.h"
|
andrew@0
|
78 #include "pitchfcomb.h"
|
andrew@0
|
79 #include "beattracking.h"
|
andrew@0
|
80 #include "onset.h"
|
andrew@0
|
81 #include "tempo.h"
|
andrew@0
|
82
|
andrew@0
|
83 #ifdef __cplusplus
|
andrew@0
|
84 } /* extern "C" */
|
andrew@0
|
85 #endif
|
andrew@0
|
86
|
andrew@0
|
87 #endif
|
andrew@0
|
88
|