1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
| #ifndef COMDEFINE_H
| #define COMDEFINE_H
|
| #define S_BEGIN 0
| #define S_MIDDLE 1
| #define S_END 2
| #define S_ALL 3
| #define S_ERR 4
|
| #ifndef MODEL_SAMPLE_RATE
| #define MODEL_SAMPLE_RATE 16000
| #endif
|
| #ifndef VAD_SILENCE_DYRATION
| #define VAD_SILENCE_DYRATION 15000
| #endif
|
| #ifndef VAD_MAX_LEN
| #define VAD_MAX_LEN 800
| #endif
|
| #ifndef VAD_SPEECH_NOISE_THRES
| #define VAD_SPEECH_NOISE_THRES 0.9
| #endif
|
|
| #endif
|
|