annotate src/delta.c @ 56:450712b21565

Added namespacing to enumerations and defines. Made most macros private.
author Jamie Bullock <jamie@postlude.co.uk>
date Mon, 29 Jan 2007 11:30:11 +0000
parents 4a36f70a76e9
children f2af1c75e3ed
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 /* xtract_delta.c: defines functions that extract a feature as a single value from more than one input vector */
jamie@1 22
jamie@38 23 #include "xtract/libxtract.h"
jamie@1 24
jamie@43 25 int xtract_flux(const float *data, const int N, const void *argv , float *result){
jamie@1 26
jamie@56 27 return XTRACT_FEATURE_NOT_IMPLEMENTED;
jamie@1 28
jamie@1 29 }
jamie@1 30
jamie@43 31 int xtract_attack_time(const float *data, const int N, const void *argv , float *result){
jamie@1 32
jamie@56 33 return XTRACT_FEATURE_NOT_IMPLEMENTED;
jamie@1 34
jamie@1 35 }
jamie@1 36
jamie@43 37 int xtract_decay_time(const float *data, const int N, const void *argv, float *result){
jamie@1 38
jamie@56 39 return XTRACT_FEATURE_NOT_IMPLEMENTED;
jamie@1 40
jamie@1 41 }
jamie@1 42
jamie@43 43 int xtract_delta_feature(const float *data, const int N, const void *argv, float *result){
jamie@1 44
jamie@56 45 return XTRACT_FEATURE_NOT_IMPLEMENTED;
jamie@1 46
jamie@1 47 }
jamie@1 48