Mercurial > hg > qm-dsp
comparison dsp/segmentation/segment.h @ 20:8bdbda7fb893
* First cut at properly integrating the segmenter and making it work right
author | cannam |
---|---|
date | Wed, 09 Jan 2008 16:50:04 +0000 |
parents | 8e90a56b4b5f |
children | d096a79fa772 |
comparison
equal
deleted
inserted
replaced
19:d3a856b44c43 | 20:8bdbda7fb893 |
---|---|
1 #ifndef _SEGMENT_H | 1 #ifndef _SEGMENT_H |
2 #define _SEGMENT_H | 2 #define _SEGMENT_H |
3 | |
4 #ifdef __cplusplus | |
5 extern "C" { | |
6 #endif | |
3 | 7 |
4 /* | 8 /* |
5 * segment.h | 9 * segment.h |
6 * soundbite | 10 * soundbite |
7 * | 11 * |
30 FEATURE_TYPE_UNKNOWN = 0, | 34 FEATURE_TYPE_UNKNOWN = 0, |
31 FEATURE_TYPE_CONSTQ = 1, | 35 FEATURE_TYPE_CONSTQ = 1, |
32 FEATURE_TYPE_CHROMA | 36 FEATURE_TYPE_CHROMA |
33 } feature_types; | 37 } feature_types; |
34 | 38 |
39 #ifdef __cplusplus | |
40 } | |
35 #endif | 41 #endif |
36 | 42 |
43 #endif | |
44 |