annotate src/libxtract.c @ 10:998623a98706

Added XTRACT macro
author Jamie Bullock <jamie@postlude.co.uk>
date Sun, 08 Oct 2006 15:05:02 +0000
parents cac976b2a69d
children 81eb5810a301
rev   line source
jamie@1 1 /* libxtract feature extraction library
jamie@1 2 *
jamie@1 3 * Copyright (C) 2006 Jamie Bullock
jamie@1 4 *
jamie@1 5 * This program is free software; you can redistribute it and/or modify
jamie@1 6 * it under the terms of the GNU General Public License as published by
jamie@1 7 * the Free Software Foundation; either version 2 of the License, or
jamie@1 8 * (at your option) any later version.
jamie@1 9 *
jamie@1 10 * This program is distributed in the hope that it will be useful,
jamie@1 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jamie@1 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
jamie@1 13 * GNU General Public License for more details.
jamie@1 14 *
jamie@1 15 * You should have received a copy of the GNU General Public License
jamie@1 16 * along with this program; if not, write to the Free Software
jamie@1 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
jamie@1 18 * USA.
jamie@1 19 */
jamie@1 20
jamie@1 21 #include "xtract/libxtract.h"
jamie@10 22 #define XTRACT
jamie@1 23
jamie@1 24 int(*xtract[])(float *, int, void *, float *) = {
jamie@1 25 /* xtract_scalar.h */
jamie@1 26 xtract_mean,
jamie@1 27 xtract_variance,
jamie@1 28 xtract_standard_deviation,
jamie@1 29 xtract_average_deviation,
jamie@1 30 xtract_skewness,
jamie@1 31 xtract_kurtosis,
jamie@1 32 xtract_irregularity_k,
jamie@1 33 xtract_irregularity_j,
jamie@1 34 xtract_tristimulus_1,
jamie@1 35 xtract_tristimulus_2,
jamie@1 36 xtract_tristimulus_3,
jamie@1 37 xtract_smoothness,
jamie@1 38 xtract_spread,
jamie@1 39 xtract_zcr,
jamie@1 40 xtract_rolloff,
jamie@1 41 xtract_loudness,
jamie@1 42 xtract_flatness,
jamie@1 43 xtract_tonality,
jamie@1 44 xtract_crest,
jamie@1 45 xtract_noisiness,
jamie@1 46 xtract_rms_amplitude,
jamie@1 47 xtract_inharmonicity,
jamie@1 48 xtract_power,
jamie@1 49 xtract_odd_even_ratio,
jamie@1 50 xtract_sharpness,
jamie@1 51 xtract_slope,
jamie@5 52 xtract_lowest_match,
jamie@1 53 xtract_hps,
jamie@10 54 xtract_f0,
jamie@1 55 /* xtract_vector.h */
jamie@1 56 xtract_magnitude_spectrum,
jamie@1 57 xtract_autocorrelation,
jamie@1 58 xtract_autocorrelation_fft,
jamie@1 59 xtract_amdf,
jamie@1 60 xtract_asdf,
jamie@1 61 xtract_mfcc,
jamie@1 62 xtract_dct,
jamie@1 63 xtract_bark_coefficients,
jamie@1 64 xtract_peaks,
jamie@1 65 /* xtract_delta.h */
jamie@1 66 xtract_flux,
jamie@1 67 xtract_attack_time,
jamie@1 68 xtract_decay_time,
jamie@1 69 xtract_delta_feature
jamie@1 70 };
jamie@10 71