00001 /* 00002 Copyright (C) 2003 Paul Brossier <piem@altern.org> 00003 00004 This program is free software; you can redistribute it and/or modify 00005 it under the terms of the GNU General Public License as published by 00006 the Free Software Foundation; either version 2 of the License, or 00007 (at your option) any later version. 00008 00009 This program is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 GNU General Public License for more details. 00013 00014 You should have received a copy of the GNU General Public License 00015 along with this program; if not, write to the Free Software 00016 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00017 00018 */ 00019 00038 #ifndef AUBIO_H 00039 #define AUBIO_H 00040 00052 #ifdef __cplusplus 00053 extern "C" { 00054 #endif 00055 00056 /* first the generated config file */ 00057 #include "config.h" 00058 00059 /* in this order */ 00060 #include "types.h" 00061 #include "sample.h" 00062 #include "fft.h" 00063 #include "phasevoc.h" 00064 #include "mathutils.h" 00065 #include "scale.h" 00066 #include "hist.h" 00067 #include "onsetdetection.h" 00068 #include "tss.h" 00069 #include "resample.h" 00070 #include "peakpick.h" 00071 #include "biquad.h" 00072 #include "filter.h" 00073 #include "pitchdetection.h" 00074 #include "pitchmcomb.h" 00075 #include "pitchyin.h" 00076 #include "pitchyinfft.h" 00077 #include "pitchschmitt.h" 00078 #include "pitchfcomb.h" 00079 #include "beattracking.h" 00080 #include "onset.h" 00081 #include "tempo.h" 00082 00083 #ifdef __cplusplus 00084 } /* extern "C" */ 00085 #endif 00086 00087 #endif 00088