コード例 #1
0
ファイル: Averager.cs プロジェクト: 101010b/AudioProcessor2
 public LinearRMSA(Averager _root, int _len) : base(_root, _len)
 {
     intcnt     = 0;
     S          = S2 = 0;
     aFilterIIR = new AFilterIIR(_root.sampleRate);
 }
コード例 #2
0
ファイル: Averager.cs プロジェクト: 101010b/AudioProcessor2
 public LogRMS(Averager _root, int _len) : base(_root, _len)
 {
     intcnt = 0;
     S      = S2 = 0;
 }
コード例 #3
0
ファイル: Averager.cs プロジェクト: 101010b/AudioProcessor2
 public LinearAbsMax(Averager _root, int _len) : base(_root, _len)
 {
     intcnt = 0;
     val    = 0;
 }
コード例 #4
0
ファイル: Averager.cs プロジェクト: 101010b/AudioProcessor2
 public LinearPP(Averager _root, int _len) : base(_root, _len)
 {
     intcnt = 0;
     min    = max = 0;
 }
コード例 #5
0
ファイル: Averager.cs プロジェクト: 101010b/AudioProcessor2
 public BaseAverager(Averager _root, int _len)
 {
     root = _root;
     len  = _len;
     reset();
 }