Index: head/audio/aubio/Makefile =================================================================== --- head/audio/aubio/Makefile (revision 438757) +++ head/audio/aubio/Makefile (revision 438758) @@ -1,52 +1,52 @@ # Created by: Edward Tomasz Napierala # $FreeBSD$ PORTNAME= aubio -PORTVERSION= 0.4.4 +PORTVERSION= 0.4.5 CATEGORIES= audio MASTER_SITES= http://aubio.org/pub/ MAINTAINER= ports@FreeBSD.org COMMENT= Library for audio labelling LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= txt2man:textproc/txt2man USES= pkgconfig tar:bzip2 waf CONFIGURE_ARGS= --mandir=${MANPREFIX}/man USE_LDCONFIG= yes OPTIONS_DEFINE= COMPLEX DOXYGEN FFMPEG FFTW JACK SAMPLERATE SNDFILE OPTIONS_DEFAULT= JACK SAMPLERATE SNDFILE FFTW OPTIONS_SUB= yes COMPLEX_DESC= Compile with C99 complex.h COMPLEX_CONFIGURE_ENABLE= complex DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen DOXYGEN_CONFIGURE_OFF= --disable-doxygen FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg FFMPEG_CONFIGURE_ENABLE= avcodec JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_CONFIGURE_ENABLE= jack SAMPLERATE_LIB_DEPENDS= libsamplerate.so:audio/libsamplerate SAMPLERATE_CONFIGURE_ENABLE= samplerate FFTW_DESC= Use single precision FFTW3 instead of built-in OOURA FFTW_CONFIGURE_ENABLE= fftw3f FFTW_BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3 FFTW_LIB_DEPENDS= libfftw3f.so:math/fftw3-float SNDFILE_LIB_DEPENDS= libsndfile.so:audio/libsndfile SNDFILE_CONFIGURE_ENABLE= sndfile post-patch: @${REINPLACE_CMD} -e \ '/pkgconfig/s|$${LIBDIR}|&data|' ${WRKSRC}/waflib/TaskGen.py post-install: .for b in mfcc notes onset pitch quiet track @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/aubio${b} .endfor @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libaubio.so .include Index: head/audio/aubio/distinfo =================================================================== --- head/audio/aubio/distinfo (revision 438757) +++ head/audio/aubio/distinfo (revision 438758) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483950303 -SHA256 (aubio-0.4.4.tar.bz2) = 2acdb92623b9d4ba641c387760ffe3ec1e4c6ab498e64e5e2286c99e36ffbff8 -SIZE (aubio-0.4.4.tar.bz2) = 334754 +TIMESTAMP = 1492480690 +SHA256 (aubio-0.4.5.tar.bz2) = 70c2804e6f4fbf0ebc0fb9ac8cc9d465ef4a4d438311c074c9a7364e98827af6 +SIZE (aubio-0.4.5.tar.bz2) = 350615 Index: head/audio/aubio/files/patch-wscript =================================================================== --- head/audio/aubio/files/patch-wscript (revision 438757) +++ head/audio/aubio/files/patch-wscript (revision 438758) @@ -1,37 +1,40 @@ ---- wscript.orig 2017-01-08 15:44:05 UTC +--- wscript.orig 2017-04-08 10:09:27 UTC +++ wscript -@@ -103,6 +103,9 @@ def options(ctx): +@@ -94,6 +94,9 @@ def options(ctx): help_str = 'build documentation (auto)', help_disable_str = 'do not build documentation') + ctx.add_option('--disable-doxygen', action = 'store_true', + dest = 'disable_doxygen', + help = 'disable doxygen even if found') ctx.add_option('--with-target-platform', type='string', help='set target platform for cross-compilation', dest='target_platform') -@@ -376,6 +379,9 @@ def configure(ctx): +@@ -388,6 +391,9 @@ def configure(ctx): # check if doxygen is installed, optional try: ctx.find_program('doxygen', var='DOXYGEN') + if ctx.options.disable_doxygen: + from sys import stderr + print >> stderr, 'doxygen found, but disabled with --disable-doxygen' except ctx.errors.ConfigurationError: ctx.to_log('doxygen was not found (ignoring)') -@@ -428,12 +434,12 @@ def txt2man(bld): +@@ -440,7 +446,7 @@ def txt2man(bld): def doxygen(bld): # build documentation from source files using doxygen - if bld.env['DOXYGEN']: + if bld.env['DOXYGEN'] and not bld.options.disable_doxygen: - bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null', + bld.env.VERSION = VERSION + rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )' + rule += ' | doxygen - > /dev/null' +@@ -448,7 +454,7 @@ def doxygen(bld): source = 'doc/web.cfg', target = '../doc/web/html/index.html', cwd = 'doc') - bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc', + bld.install_files( '${DATAROOTDIR}' + '/doc/aubio', bld.path.ant_glob('doc/web/html/**'), cwd = bld.path.find_dir ('doc/web'), relative_trick = True) Index: head/audio/aubio/pkg-plist =================================================================== --- head/audio/aubio/pkg-plist (revision 438757) +++ head/audio/aubio/pkg-plist (revision 438758) @@ -1,337 +1,339 @@ bin/aubiomfcc bin/aubionotes bin/aubioonset bin/aubiopitch bin/aubioquiet bin/aubiotrack include/aubio/aubio.h include/aubio/cvec.h include/aubio/fmat.h include/aubio/fvec.h include/aubio/io/audio_unit.h include/aubio/io/ioutils.h include/aubio/io/sink.h include/aubio/io/sink_apple_audio.h include/aubio/io/sink_sndfile.h include/aubio/io/sink_wavwrite.h include/aubio/io/source.h include/aubio/io/source_apple_audio.h include/aubio/io/source_avcodec.h include/aubio/io/source_sndfile.h include/aubio/io/source_wavread.h include/aubio/lvec.h include/aubio/mathutils.h include/aubio/musicutils.h include/aubio/notes/notes.h include/aubio/onset/onset.h include/aubio/onset/peakpicker.h include/aubio/pitch/pitch.h include/aubio/pitch/pitchfcomb.h include/aubio/pitch/pitchmcomb.h include/aubio/pitch/pitchschmitt.h include/aubio/pitch/pitchspecacf.h include/aubio/pitch/pitchyin.h include/aubio/pitch/pitchyinfft.h +include/aubio/spectral/awhitening.h include/aubio/spectral/fft.h include/aubio/spectral/filterbank.h include/aubio/spectral/filterbank_mel.h include/aubio/spectral/mfcc.h include/aubio/spectral/phasevoc.h include/aubio/spectral/specdesc.h include/aubio/spectral/tss.h include/aubio/synth/sampler.h include/aubio/synth/wavetable.h include/aubio/tempo/beattracking.h include/aubio/tempo/tempo.h include/aubio/temporal/a_weighting.h include/aubio/temporal/biquad.h include/aubio/temporal/c_weighting.h include/aubio/temporal/filter.h include/aubio/temporal/resampler.h include/aubio/types.h include/aubio/utils/hist.h include/aubio/utils/log.h include/aubio/utils/parameter.h include/aubio/utils/scale.h include/aubio/vecutils.h lib/libaubio.a lib/libaubio.so lib/libaubio.so.5 -lib/libaubio.so.5.1.5 +lib/libaubio.so.5.2.6 libdata/pkgconfig/aubio.pc +man/man1/aubio.1.gz man/man1/aubiocut.1.gz man/man1/aubiomfcc.1.gz man/man1/aubionotes.1.gz man/man1/aubioonset.1.gz man/man1/aubiopitch.1.gz man/man1/aubioquiet.1.gz man/man1/aubiotrack.1.gz %%DOXYGEN%%share/doc/aubio/html/a__weighting_8h.html %%DOXYGEN%%share/doc/aubio/html/a__weighting_8h_source.html %%DOXYGEN%%share/doc/aubio/html/annotated.html %%DOXYGEN%%share/doc/aubio/html/aubio_8h.html %%DOXYGEN%%share/doc/aubio/html/aubio_8h_source.html %%DOXYGEN%%share/doc/aubio/html/bc_s.png %%DOXYGEN%%share/doc/aubio/html/bdwn.png %%DOXYGEN%%share/doc/aubio/html/biquad_8h.html %%DOXYGEN%%share/doc/aubio/html/biquad_8h_source.html %%DOXYGEN%%share/doc/aubio/html/c__weighting_8h.html %%DOXYGEN%%share/doc/aubio/html/c__weighting_8h_source.html %%DOXYGEN%%share/doc/aubio/html/classes.html %%DOXYGEN%%share/doc/aubio/html/closed.png %%DOXYGEN%%share/doc/aubio/html/cvec_8h.html %%DOXYGEN%%share/doc/aubio/html/cvec_8h_source.html %%DOXYGEN%%share/doc/aubio/html/dir_0019dc9908b3707f2efe5d1d2e908f03.html %%DOXYGEN%%share/doc/aubio/html/dir_24909bf68f95b02474c7cd396a6ea1b7.html %%DOXYGEN%%share/doc/aubio/html/dir_421d137a6d6e69b3f737421a73d375f8.html %%DOXYGEN%%share/doc/aubio/html/dir_6c3688c2a02b4bf89699351955a39c88.html %%DOXYGEN%%share/doc/aubio/html/dir_7672bb780010713f2d2504f90f5cfe22.html %%DOXYGEN%%share/doc/aubio/html/dir_9f81523443f82c74e7139b3dddc1da52.html %%DOXYGEN%%share/doc/aubio/html/dir_bc161955dc3a3d2485839eba21420d01.html %%DOXYGEN%%share/doc/aubio/html/dir_cbdb8362360e11eafe2fa3bc74cf0ffd.html %%DOXYGEN%%share/doc/aubio/html/dir_fcd67417bc8295f1aecfd58a346e9273.html %%DOXYGEN%%share/doc/aubio/html/doc.png %%DOXYGEN%%share/doc/aubio/html/doxygen.css %%DOXYGEN%%share/doc/aubio/html/doxygen.png %%DOXYGEN%%share/doc/aubio/html/dynsections.js %%DOXYGEN%%share/doc/aubio/html/examples.html %%DOXYGEN%%share/doc/aubio/html/examples_2aubionotes_8c-example.html %%DOXYGEN%%share/doc/aubio/html/examples_2aubioonset_8c-example.html %%DOXYGEN%%share/doc/aubio/html/examples_2aubiopitch_8c-example.html %%DOXYGEN%%share/doc/aubio/html/examples_2aubiotrack_8c-example.html %%DOXYGEN%%share/doc/aubio/html/fft_8h.html %%DOXYGEN%%share/doc/aubio/html/fft_8h_source.html %%DOXYGEN%%share/doc/aubio/html/files.html %%DOXYGEN%%share/doc/aubio/html/filter_8h.html %%DOXYGEN%%share/doc/aubio/html/filter_8h_source.html %%DOXYGEN%%share/doc/aubio/html/filterbank_8h.html %%DOXYGEN%%share/doc/aubio/html/filterbank_8h_source.html %%DOXYGEN%%share/doc/aubio/html/filterbank__mel_8h.html %%DOXYGEN%%share/doc/aubio/html/filterbank__mel_8h_source.html %%DOXYGEN%%share/doc/aubio/html/fmat_8h.html %%DOXYGEN%%share/doc/aubio/html/fmat_8h_source.html %%DOXYGEN%%share/doc/aubio/html/folderclosed.png %%DOXYGEN%%share/doc/aubio/html/folderopen.png %%DOXYGEN%%share/doc/aubio/html/functions.html %%DOXYGEN%%share/doc/aubio/html/functions_vars.html %%DOXYGEN%%share/doc/aubio/html/fvec_8h.html %%DOXYGEN%%share/doc/aubio/html/fvec_8h_source.html %%DOXYGEN%%share/doc/aubio/html/globals.html %%DOXYGEN%%share/doc/aubio/html/globals_c.html %%DOXYGEN%%share/doc/aubio/html/globals_d.html %%DOXYGEN%%share/doc/aubio/html/globals_defs.html %%DOXYGEN%%share/doc/aubio/html/globals_enum.html %%DOXYGEN%%share/doc/aubio/html/globals_eval.html %%DOXYGEN%%share/doc/aubio/html/globals_f.html %%DOXYGEN%%share/doc/aubio/html/globals_func.html %%DOXYGEN%%share/doc/aubio/html/globals_func_c.html %%DOXYGEN%%share/doc/aubio/html/globals_func_d.html %%DOXYGEN%%share/doc/aubio/html/globals_func_f.html %%DOXYGEN%%share/doc/aubio/html/globals_func_l.html %%DOXYGEN%%share/doc/aubio/html/globals_func_n.html %%DOXYGEN%%share/doc/aubio/html/globals_h.html %%DOXYGEN%%share/doc/aubio/html/globals_l.html %%DOXYGEN%%share/doc/aubio/html/globals_n.html %%DOXYGEN%%share/doc/aubio/html/globals_s.html %%DOXYGEN%%share/doc/aubio/html/globals_type.html %%DOXYGEN%%share/doc/aubio/html/globals_u.html %%DOXYGEN%%share/doc/aubio/html/index.html %%DOXYGEN%%share/doc/aubio/html/io_2test-sink_8c-example.html %%DOXYGEN%%share/doc/aubio/html/io_2test-source_8c-example.html %%DOXYGEN%%share/doc/aubio/html/io_2test-source_multi_8c-example.html %%DOXYGEN%%share/doc/aubio/html/jquery.js %%DOXYGEN%%share/doc/aubio/html/log_8h.html %%DOXYGEN%%share/doc/aubio/html/log_8h_source.html %%DOXYGEN%%share/doc/aubio/html/lvec_8h.html %%DOXYGEN%%share/doc/aubio/html/lvec_8h_source.html %%DOXYGEN%%share/doc/aubio/html/menu.js %%DOXYGEN%%share/doc/aubio/html/menudata.js %%DOXYGEN%%share/doc/aubio/html/mfcc_8h.html %%DOXYGEN%%share/doc/aubio/html/mfcc_8h_source.html %%DOXYGEN%%share/doc/aubio/html/musicutils_8h.html %%DOXYGEN%%share/doc/aubio/html/musicutils_8h_source.html %%DOXYGEN%%share/doc/aubio/html/nav_f.png %%DOXYGEN%%share/doc/aubio/html/nav_g.png %%DOXYGEN%%share/doc/aubio/html/nav_h.png %%DOXYGEN%%share/doc/aubio/html/notes_8h.html %%DOXYGEN%%share/doc/aubio/html/notes_8h_source.html %%DOXYGEN%%share/doc/aubio/html/onset_2test-onset_8c-example.html %%DOXYGEN%%share/doc/aubio/html/onset_8h.html %%DOXYGEN%%share/doc/aubio/html/onset_8h_source.html %%DOXYGEN%%share/doc/aubio/html/open.png %%DOXYGEN%%share/doc/aubio/html/parameter_8h.html %%DOXYGEN%%share/doc/aubio/html/parameter_8h_source.html %%DOXYGEN%%share/doc/aubio/html/phasevoc_8h.html %%DOXYGEN%%share/doc/aubio/html/phasevoc_8h_source.html %%DOXYGEN%%share/doc/aubio/html/pitch_2test-pitch_8c-example.html %%DOXYGEN%%share/doc/aubio/html/pitch_8h.html %%DOXYGEN%%share/doc/aubio/html/pitch_8h_source.html %%DOXYGEN%%share/doc/aubio/html/resampler_8h.html %%DOXYGEN%%share/doc/aubio/html/resampler_8h_source.html %%DOXYGEN%%share/doc/aubio/html/sampler_8h.html %%DOXYGEN%%share/doc/aubio/html/sampler_8h_source.html %%DOXYGEN%%share/doc/aubio/html/search/all_0.html %%DOXYGEN%%share/doc/aubio/html/search/all_0.js %%DOXYGEN%%share/doc/aubio/html/search/all_1.html %%DOXYGEN%%share/doc/aubio/html/search/all_1.js %%DOXYGEN%%share/doc/aubio/html/search/all_10.html %%DOXYGEN%%share/doc/aubio/html/search/all_10.js %%DOXYGEN%%share/doc/aubio/html/search/all_2.html %%DOXYGEN%%share/doc/aubio/html/search/all_2.js %%DOXYGEN%%share/doc/aubio/html/search/all_3.html %%DOXYGEN%%share/doc/aubio/html/search/all_3.js %%DOXYGEN%%share/doc/aubio/html/search/all_4.html %%DOXYGEN%%share/doc/aubio/html/search/all_4.js %%DOXYGEN%%share/doc/aubio/html/search/all_5.html %%DOXYGEN%%share/doc/aubio/html/search/all_5.js %%DOXYGEN%%share/doc/aubio/html/search/all_6.html %%DOXYGEN%%share/doc/aubio/html/search/all_6.js %%DOXYGEN%%share/doc/aubio/html/search/all_7.html %%DOXYGEN%%share/doc/aubio/html/search/all_7.js %%DOXYGEN%%share/doc/aubio/html/search/all_8.html %%DOXYGEN%%share/doc/aubio/html/search/all_8.js %%DOXYGEN%%share/doc/aubio/html/search/all_9.html %%DOXYGEN%%share/doc/aubio/html/search/all_9.js %%DOXYGEN%%share/doc/aubio/html/search/all_a.html %%DOXYGEN%%share/doc/aubio/html/search/all_a.js %%DOXYGEN%%share/doc/aubio/html/search/all_b.html %%DOXYGEN%%share/doc/aubio/html/search/all_b.js %%DOXYGEN%%share/doc/aubio/html/search/all_c.html %%DOXYGEN%%share/doc/aubio/html/search/all_c.js %%DOXYGEN%%share/doc/aubio/html/search/all_d.html %%DOXYGEN%%share/doc/aubio/html/search/all_d.js %%DOXYGEN%%share/doc/aubio/html/search/all_e.html %%DOXYGEN%%share/doc/aubio/html/search/all_e.js %%DOXYGEN%%share/doc/aubio/html/search/all_f.html %%DOXYGEN%%share/doc/aubio/html/search/all_f.js %%DOXYGEN%%share/doc/aubio/html/search/classes_0.html %%DOXYGEN%%share/doc/aubio/html/search/classes_0.js %%DOXYGEN%%share/doc/aubio/html/search/classes_1.html %%DOXYGEN%%share/doc/aubio/html/search/classes_1.js %%DOXYGEN%%share/doc/aubio/html/search/classes_2.html %%DOXYGEN%%share/doc/aubio/html/search/classes_2.js %%DOXYGEN%%share/doc/aubio/html/search/close.png %%DOXYGEN%%share/doc/aubio/html/search/defines_0.html %%DOXYGEN%%share/doc/aubio/html/search/defines_0.js %%DOXYGEN%%share/doc/aubio/html/search/defines_1.html %%DOXYGEN%%share/doc/aubio/html/search/defines_1.js %%DOXYGEN%%share/doc/aubio/html/search/enums_0.html %%DOXYGEN%%share/doc/aubio/html/search/enums_0.js %%DOXYGEN%%share/doc/aubio/html/search/enumvalues_0.html %%DOXYGEN%%share/doc/aubio/html/search/enumvalues_0.js %%DOXYGEN%%share/doc/aubio/html/search/files_0.html %%DOXYGEN%%share/doc/aubio/html/search/files_0.js %%DOXYGEN%%share/doc/aubio/html/search/files_1.html %%DOXYGEN%%share/doc/aubio/html/search/files_1.js %%DOXYGEN%%share/doc/aubio/html/search/files_2.html %%DOXYGEN%%share/doc/aubio/html/search/files_2.js %%DOXYGEN%%share/doc/aubio/html/search/files_3.html %%DOXYGEN%%share/doc/aubio/html/search/files_3.js %%DOXYGEN%%share/doc/aubio/html/search/files_4.html %%DOXYGEN%%share/doc/aubio/html/search/files_4.js %%DOXYGEN%%share/doc/aubio/html/search/files_5.html %%DOXYGEN%%share/doc/aubio/html/search/files_5.js %%DOXYGEN%%share/doc/aubio/html/search/files_6.html %%DOXYGEN%%share/doc/aubio/html/search/files_6.js %%DOXYGEN%%share/doc/aubio/html/search/files_7.html %%DOXYGEN%%share/doc/aubio/html/search/files_7.js %%DOXYGEN%%share/doc/aubio/html/search/files_8.html %%DOXYGEN%%share/doc/aubio/html/search/files_8.js %%DOXYGEN%%share/doc/aubio/html/search/files_9.html %%DOXYGEN%%share/doc/aubio/html/search/files_9.js %%DOXYGEN%%share/doc/aubio/html/search/files_a.html %%DOXYGEN%%share/doc/aubio/html/search/files_a.js %%DOXYGEN%%share/doc/aubio/html/search/files_b.html %%DOXYGEN%%share/doc/aubio/html/search/files_b.js %%DOXYGEN%%share/doc/aubio/html/search/files_c.html %%DOXYGEN%%share/doc/aubio/html/search/files_c.js %%DOXYGEN%%share/doc/aubio/html/search/files_d.html %%DOXYGEN%%share/doc/aubio/html/search/files_d.js %%DOXYGEN%%share/doc/aubio/html/search/functions_0.html %%DOXYGEN%%share/doc/aubio/html/search/functions_0.js %%DOXYGEN%%share/doc/aubio/html/search/functions_1.html %%DOXYGEN%%share/doc/aubio/html/search/functions_1.js %%DOXYGEN%%share/doc/aubio/html/search/functions_2.html %%DOXYGEN%%share/doc/aubio/html/search/functions_2.js %%DOXYGEN%%share/doc/aubio/html/search/functions_3.html %%DOXYGEN%%share/doc/aubio/html/search/functions_3.js %%DOXYGEN%%share/doc/aubio/html/search/functions_4.html %%DOXYGEN%%share/doc/aubio/html/search/functions_4.js %%DOXYGEN%%share/doc/aubio/html/search/functions_5.html %%DOXYGEN%%share/doc/aubio/html/search/functions_5.js %%DOXYGEN%%share/doc/aubio/html/search/mag_sel.png %%DOXYGEN%%share/doc/aubio/html/search/nomatches.html %%DOXYGEN%%share/doc/aubio/html/search/search.css %%DOXYGEN%%share/doc/aubio/html/search/search.js %%DOXYGEN%%share/doc/aubio/html/search/search_l.png %%DOXYGEN%%share/doc/aubio/html/search/search_m.png %%DOXYGEN%%share/doc/aubio/html/search/search_r.png %%DOXYGEN%%share/doc/aubio/html/search/searchdata.js %%DOXYGEN%%share/doc/aubio/html/search/typedefs_0.html %%DOXYGEN%%share/doc/aubio/html/search/typedefs_0.js %%DOXYGEN%%share/doc/aubio/html/search/typedefs_1.html %%DOXYGEN%%share/doc/aubio/html/search/typedefs_1.js %%DOXYGEN%%share/doc/aubio/html/search/typedefs_2.html %%DOXYGEN%%share/doc/aubio/html/search/typedefs_2.js %%DOXYGEN%%share/doc/aubio/html/search/typedefs_3.html %%DOXYGEN%%share/doc/aubio/html/search/typedefs_3.js %%DOXYGEN%%share/doc/aubio/html/search/typedefs_4.html %%DOXYGEN%%share/doc/aubio/html/search/typedefs_4.js %%DOXYGEN%%share/doc/aubio/html/search/variables_0.html %%DOXYGEN%%share/doc/aubio/html/search/variables_0.js %%DOXYGEN%%share/doc/aubio/html/search/variables_1.html %%DOXYGEN%%share/doc/aubio/html/search/variables_1.js %%DOXYGEN%%share/doc/aubio/html/search/variables_2.html %%DOXYGEN%%share/doc/aubio/html/search/variables_2.js %%DOXYGEN%%share/doc/aubio/html/search/variables_3.html %%DOXYGEN%%share/doc/aubio/html/search/variables_3.js %%DOXYGEN%%share/doc/aubio/html/search/variables_4.html %%DOXYGEN%%share/doc/aubio/html/search/variables_4.js %%DOXYGEN%%share/doc/aubio/html/sink_8h.html %%DOXYGEN%%share/doc/aubio/html/sink_8h_source.html %%DOXYGEN%%share/doc/aubio/html/source_8h.html %%DOXYGEN%%share/doc/aubio/html/source_8h_source.html %%DOXYGEN%%share/doc/aubio/html/specdesc_8h.html %%DOXYGEN%%share/doc/aubio/html/specdesc_8h_source.html %%DOXYGEN%%share/doc/aubio/html/spectral_2test-fft_8c-example.html %%DOXYGEN%%share/doc/aubio/html/spectral_2test-filterbank_8c-example.html %%DOXYGEN%%share/doc/aubio/html/spectral_2test-filterbank_mel_8c-example.html %%DOXYGEN%%share/doc/aubio/html/spectral_2test-mfcc_8c-example.html %%DOXYGEN%%share/doc/aubio/html/spectral_2test-phasevoc_8c-example.html %%DOXYGEN%%share/doc/aubio/html/spectral_2test-specdesc_8c-example.html %%DOXYGEN%%share/doc/aubio/html/spectral_2test-tss_8c-example.html %%DOXYGEN%%share/doc/aubio/html/splitbar.png %%DOXYGEN%%share/doc/aubio/html/structcvec__t.html %%DOXYGEN%%share/doc/aubio/html/structfmat__t.html %%DOXYGEN%%share/doc/aubio/html/structfvec__t.html %%DOXYGEN%%share/doc/aubio/html/structlvec__t.html %%DOXYGEN%%share/doc/aubio/html/sync_off.png %%DOXYGEN%%share/doc/aubio/html/sync_on.png %%DOXYGEN%%share/doc/aubio/html/synth_2test-sampler_8c-example.html %%DOXYGEN%%share/doc/aubio/html/synth_2test-wavetable_8c-example.html %%DOXYGEN%%share/doc/aubio/html/tab_a.png %%DOXYGEN%%share/doc/aubio/html/tab_b.png %%DOXYGEN%%share/doc/aubio/html/tab_h.png %%DOXYGEN%%share/doc/aubio/html/tab_s.png %%DOXYGEN%%share/doc/aubio/html/tabs.css %%DOXYGEN%%share/doc/aubio/html/tempo_2test-tempo_8c-example.html %%DOXYGEN%%share/doc/aubio/html/tempo_8h.html %%DOXYGEN%%share/doc/aubio/html/tempo_8h_source.html %%DOXYGEN%%share/doc/aubio/html/temporal_2test-a_weighting_8c-example.html %%DOXYGEN%%share/doc/aubio/html/temporal_2test-biquad_8c-example.html %%DOXYGEN%%share/doc/aubio/html/temporal_2test-c_weighting_8c-example.html %%DOXYGEN%%share/doc/aubio/html/temporal_2test-filter_8c-example.html %%DOXYGEN%%share/doc/aubio/html/test-cvec_8c-example.html %%DOXYGEN%%share/doc/aubio/html/test-fmat_8c-example.html %%DOXYGEN%%share/doc/aubio/html/test-fvec_8c-example.html %%DOXYGEN%%share/doc/aubio/html/test-lvec_8c-example.html %%DOXYGEN%%share/doc/aubio/html/tss_8h.html %%DOXYGEN%%share/doc/aubio/html/tss_8h_source.html %%DOXYGEN%%share/doc/aubio/html/types_8h.html %%DOXYGEN%%share/doc/aubio/html/types_8h_source.html %%DOXYGEN%%share/doc/aubio/html/utils_2test-log_8c-example.html %%DOXYGEN%%share/doc/aubio/html/utils_2test-parameter_8c-example.html %%DOXYGEN%%share/doc/aubio/html/vecutils_8h.html %%DOXYGEN%%share/doc/aubio/html/vecutils_8h_source.html %%DOXYGEN%%share/doc/aubio/html/wavetable_8h.html %%DOXYGEN%%share/doc/aubio/html/wavetable_8h_source.html