feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 98df9f4 was
b78805a,
checked in by Paul Brossier <piem@altern.org>, 19 years ago
|
import 0.1.9beta5 with beat tracking
import 0.1.9beta5 with beat tracking
|
-
Property mode set to
100644
|
File size:
1.9 KB
|
Rev | Line | |
---|
[96fb8ad] | 1 | /* |
---|
| 2 | Copyright (C) 2003 Paul Brossier <piem@altern.org> |
---|
| 3 | |
---|
| 4 | This program is free software; you can redistribute it and/or modify |
---|
| 5 | it under the terms of the GNU General Public License as published by |
---|
| 6 | the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | (at your option) any later version. |
---|
| 8 | |
---|
| 9 | This program is distributed in the hope that it will be useful, |
---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | GNU General Public License for more details. |
---|
| 13 | |
---|
| 14 | You should have received a copy of the GNU General Public License |
---|
| 15 | along with this program; if not, write to the Free Software |
---|
| 16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 17 | |
---|
| 18 | */ |
---|
| 19 | |
---|
| 20 | /** @mainpage |
---|
| 21 | * |
---|
[b60dd4ae] | 22 | * \section whatis Introduction |
---|
[96fb8ad] | 23 | * |
---|
[b60dd4ae] | 24 | * Aubio is a library for audio labelling: it provides function for pitch |
---|
| 25 | * estimation and onset detection. See the README file for more |
---|
| 26 | * information. |
---|
[96fb8ad] | 27 | * |
---|
| 28 | * \section bugs bugs and todo |
---|
| 29 | * |
---|
[b60dd4ae] | 30 | * This software is under development. It needs debugging and |
---|
| 31 | * optimisations. |
---|
[96fb8ad] | 32 | * |
---|
| 33 | * See <a href='bug.html'>bugs</a> and <a href='todo.html'>todo</a> lists. |
---|
| 34 | * |
---|
| 35 | */ |
---|
| 36 | |
---|
| 37 | #ifndef AUBIO_H |
---|
| 38 | #define AUBIO_H |
---|
| 39 | |
---|
| 40 | /** |
---|
| 41 | * Global Aubio include file. |
---|
| 42 | * Programmers just need to include this file as: |
---|
| 43 | * |
---|
| 44 | * @code |
---|
| 45 | * #include "aubio.h" |
---|
| 46 | * @endcode |
---|
| 47 | * |
---|
| 48 | * @file aubio.h |
---|
| 49 | */ |
---|
| 50 | |
---|
| 51 | #ifdef __cplusplus |
---|
| 52 | extern "C" { |
---|
| 53 | #endif |
---|
| 54 | |
---|
| 55 | /* first the generated config file */ |
---|
| 56 | #include "config.h" |
---|
| 57 | |
---|
| 58 | /* in this order */ |
---|
| 59 | #include "types.h" |
---|
| 60 | #include "sample.h" |
---|
| 61 | #include "fft.h" |
---|
| 62 | #include "phasevoc.h" |
---|
| 63 | #include "mathutils.h" |
---|
| 64 | #include "scale.h" |
---|
| 65 | #include "hist.h" |
---|
| 66 | #include "onsetdetection.h" |
---|
| 67 | #include "tss.h" |
---|
| 68 | #include "resample.h" |
---|
| 69 | #include "peakpick.h" |
---|
| 70 | #include "biquad.h" |
---|
| 71 | #include "filter.h" |
---|
| 72 | #include "pitchdetection.h" |
---|
| 73 | #include "pitchmcomb.h" |
---|
| 74 | #include "pitchyin.h" |
---|
[7a04950] | 75 | #include "pitchschmitt.h" |
---|
| 76 | #include "pitchfcomb.h" |
---|
[b78805a] | 77 | #include "beattracking.h" |
---|
[96fb8ad] | 78 | |
---|
| 79 | #ifdef __cplusplus |
---|
| 80 | } /* extern "C" */ |
---|
| 81 | #endif |
---|
| 82 | |
---|
| 83 | #endif |
---|
| 84 | |
---|
Note: See
TracBrowser
for help on using the repository browser.