jamie@1: /* libxtract feature extraction library jamie@1: * jamie@1: * Copyright (C) 2006 Jamie Bullock jamie@1: * jamie@1: * This program is free software; you can redistribute it and/or modify jamie@1: * it under the terms of the GNU General Public License as published by jamie@1: * the Free Software Foundation; either version 2 of the License, or jamie@1: * (at your option) any later version. jamie@1: * jamie@1: * This program is distributed in the hope that it will be useful, jamie@1: * but WITHOUT ANY WARRANTY; without even the implied warranty of jamie@1: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jamie@1: * GNU General Public License for more details. jamie@1: * jamie@1: * You should have received a copy of the GNU General Public License jamie@1: * along with this program; if not, write to the Free Software jamie@1: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, jamie@1: * USA. jamie@1: */ jamie@1: jamie@56: /** \file xtract_macros.h: defines useful public macros */ jamie@1: jamie@56: #ifndef XTRACT_MACROS_H jamie@56: #define XTRACT_MACROS_H jamie@1: jamie@1: #ifdef __cplusplus jamie@1: extern "C" { jamie@1: #endif jamie@1: jamie@56: #define XTRACT_BARK_BANDS 26 jamie@108: #define XTRACT_WINDOW_SIZE 1024/* dummy macro for descriptors where argc is window size */ jamie@56: #define XTRACT_NONE 0 jamie@56: #define XTRACT_ANY -1 jamie@56: #define XTRACT_UNKNOWN -2 jamie@56: #define XTRACT_MAXARGS 4 jamie@56: #define XTRACT_MAX_NAME_LENGTH 64 jamie@56: #define XTRACT_MAX_AUTHOR_LENGTH 128 jamie@56: #define XTRACT_MAX_DESC_LENGTH 256 jamie@45: jamie@1: #ifdef __cplusplus jamie@1: } jamie@1: #endif jamie@1: jamie@1: #endif