少年修仙传客户端代码仓库
client_Wu Xijin
2019-02-19 76d6b00a6a4d8027e7a9ab0e87e56a6b28a08bb1
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
35
36
37
38
39
40
41
42
43
namespace NSpeex
{
    using System;
 
    internal interface IEncoder
    {
        int Encode(Bits bits, float[] ins0);
 
        int Abr { get; set; }
 
        int BitRate { get; set; }
 
        int Complexity { get; set; }
 
        bool Dtx { get; set; }
 
        int EncodedFrameSize { get; }
 
        float[] Exc { get; }
 
        int FrameSize { get; }
 
        float[] Innov { get; }
 
        int LookAhead { get; }
 
        int Mode { get; set; }
 
        float[] PiGain { get; }
 
        int Quality { set; }
 
        float RelativeQuality { get; }
 
        int SamplingRate { get; set; }
 
        bool Vad { get; set; }
 
        bool Vbr { get; set; }
 
        float VbrQuality { get; set; }
    }
}