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
29
30
31
32
33
34
| namespace NSpeex
| {
| using System;
|
| internal interface IDecoder
| {
| int Decode(Bits bits, float[] xout);
| void DecodeStereo(float[] data, int frameSize);
|
| bool Dtx { get; }
|
| float[] Exc { get; }
|
| int FrameSize { get; }
|
| float[] Innov { get; }
|
| bool PerceptualEnhancement { get; set; }
|
| float[] PiGain { get; }
| }
| }
|
| namespace NSpeex
| {
| using System;
|
| public enum BandMode
| {
| Narrow,
| Wide,
| UltraWide
| }
| }
|
|