Exemplo n.º 1
0
 public NbDecoder()
 {
     this.random   = new Random();
     this.stereo   = new Stereo();
     this.inband   = new Inband(this.stereo);
     this.enhanced = true;
 }
Exemplo n.º 2
0
 public SbDecoder(bool ultraWide) : base(ultraWide)
 {
     this.stereo   = new Stereo();
     this.enhanced = true;
     if (ultraWide)
     {
         this.Uwbinit();
         return;
     }
     this.Wbinit();
 }
Exemplo n.º 3
0
 public Inband(Stereo stereo)
 {
     this.stereo = stereo;
 }