Merge branch 'develop' of aubio.org:/git/aubio/aubio into wavetable
[aubio.git] / src / aubio.h
index 48c16b9..5f8b518 100644 (file)
   \endcode
 
   Several examples of C programs are available in the \p examples/ and \p tests/src
-  directory of the source tree.
+  directories of the source tree.
 
   \subsection unstable_api Unstable API
 
 
 /** @file aubio.h Global aubio include file.
 
-  Programmers just need to include this file as:
+  You will want to include this file as:
 
   @code
     #include <aubio/aubio.h>
   @endcode
 
+  To access headers with unstable prototypes, use:
+
+  @code
+    #define AUBIO_UNSTABLE 1
+    #include <aubio/aubio.h>
+  @endcode
+
  */
 
 #ifdef __cplusplus
@@ -159,6 +166,7 @@ extern "C"
 #include "lvec.h"
 #include "fmat.h"
 #include "musicutils.h"
+#include "vecutils.h"
 #include "temporal/resampler.h"
 #include "temporal/filter.h"
 #include "temporal/biquad.h"
@@ -170,30 +178,32 @@ extern "C"
 #include "spectral/filterbank_mel.h"
 #include "spectral/mfcc.h"
 #include "spectral/specdesc.h"
+#include "spectral/tss.h"
 #include "pitch/pitch.h"
 #include "onset/onset.h"
-#include "onset/peakpicker.h"
 #include "tempo/tempo.h"
-#include "io/sndfileio.h"
 #include "io/source.h"
-#include "io/source_sndfile.h"
-#include "io/source_apple_audio.h"
 #include "io/sink.h"
-#include "io/sink_sndfile.h"
-#include "io/sink_apple_audio.h"
+#include "io/audio_unit.h"
+#include "synth/sampler.h"
+#include "synth/wavetable.h"
 
 #if AUBIO_UNSTABLE
-#include "vecutils.h"
 #include "mathutils.h"
-#include "utils/scale.h"
-#include "utils/hist.h"
-#include "spectral/tss.h"
+#include "io/source_sndfile.h"
+#include "io/source_apple_audio.h"
+#include "io/sink_sndfile.h"
+#include "io/sink_apple_audio.h"
+#include "io/sndfileio.h"
+#include "onset/peakpicker.h"
 #include "pitch/pitchmcomb.h"
 #include "pitch/pitchyin.h"
 #include "pitch/pitchyinfft.h"
 #include "pitch/pitchschmitt.h"
 #include "pitch/pitchfcomb.h"
 #include "tempo/beattracking.h"
+#include "utils/scale.h"
+#include "utils/hist.h"
 #endif
 
 #ifdef __cplusplus