示例#1
0
 public NbDecoder()
 {
     this.random   = new Random();
     this.stereo   = new Stereo();
     this.inband   = new Inband(this.stereo);
     this.enhanced = true;
 }
示例#2
0
 public SbDecoder(bool ultraWide) : base(ultraWide)
 {
     this.stereo   = new Stereo();
     this.enhanced = true;
     if (ultraWide)
     {
         this.Uwbinit();
         return;
     }
     this.Wbinit();
 }
示例#3
0
文件: Inband.cs 项目: zhangx3000/GFF
 public Inband(Stereo stereo)
 {
     this.stereo = stereo;
 }