annotate xtract/xtract_macros.h @ 129:a34ea87daa58

converted README to Markdown
author Jamie Bullock <jamie@postlude.co.uk>
date Thu, 31 May 2012 16:25:17 +0100
parents 859495925633
children e4f704649c50
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@56 21 /** \file xtract_macros.h: defines useful public macros */
jamie@1 22
jamie@56 23 #ifndef XTRACT_MACROS_H
jamie@56 24 #define XTRACT_MACROS_H
jamie@1 25
jamie@1 26 #ifdef __cplusplus
jamie@1 27 extern "C" {
jamie@1 28 #endif
jamie@1 29
jamie@56 30 #define XTRACT_BARK_BANDS 26
jamie@108 31 #define XTRACT_WINDOW_SIZE 1024/* dummy macro for descriptors where argc is window size */
jamie@56 32 #define XTRACT_NONE 0
jamie@56 33 #define XTRACT_ANY -1
jamie@56 34 #define XTRACT_UNKNOWN -2
jamie@56 35 #define XTRACT_MAXARGS 4
jamie@56 36 #define XTRACT_MAX_NAME_LENGTH 64
jamie@56 37 #define XTRACT_MAX_AUTHOR_LENGTH 128
jamie@56 38 #define XTRACT_MAX_DESC_LENGTH 256
jamie@45 39
jamie@1 40 #ifdef __cplusplus
jamie@1 41 }
jamie@1 42 #endif
jamie@1 43
jamie@1 44 #endif