LibXtract  0.6.2
xtract_macros.h
Go to the documentation of this file.
1 /* libxtract feature extraction library
2  *
3  * Copyright (C) 2006 Jamie Bullock
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
18  * USA.
19  */
20 
23 #ifndef XTRACT_MACROS_H
24 #define XTRACT_MACROS_H
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 #define XTRACT_BARK_BANDS 26
31 #define XTRACT_WINDOW_SIZE 1024/* dummy macro for descriptors where argc is window size */
32 #define XTRACT_NONE 0
33 #define XTRACT_ANY -1
34 #define XTRACT_UNKNOWN -2
35 #define XTRACT_MAXARGS 4
36 #define XTRACT_MAX_NAME_LENGTH 64
37 #define XTRACT_MAX_AUTHOR_LENGTH 128
38 #define XTRACT_MAX_DESC_LENGTH 256
39 
40 #ifdef __cplusplus
41 }
42 #endif
43 
44 #endif