Go to the documentation of this file.
90 #ifndef __FRAME_CLASSIFIER__
91 #define __FRAME_CLASSIFIER__
100 #define DIMENSIONS 13
101 #define MAXFRAMES 10000
116 #define PRIOR_SIL 0.4
123 #define VOTEWINDOWLEN 5
126 #define CLASSLATENCY 2
129 #define POSTPROCESS 1
156 #define SWAP_INT(x) *(x) = ((0x000000ff & (*(x))>>24) | \
157 (0x0000ff00 & (*(x))>>8) | \
158 (0x00ff0000 & (*(x))<<8) | \
159 (0xff000000 & (*(x))<<24))
161 #define SWAP_FLOAT(x) SWAP_INT((int *) x)
185 int postclassify (
int *window,
int windowlen,
int *wincap,
int myclass);
187 int vote (
int *window,