示例#1
0
        public override void Process(ref short[] left, ref short[] right)
        {
            if (dspr == null)
            {
                dspr = new Butterworth1stLPF();
                dspl = new Butterworth1stLPF();
            }

            dspl.Process(left, out left);
            dspr.Process(right, out right);
        }
示例#2
0
        public override void Process(ref short[] left, ref short[] right)
        {
            if (dspr == null)
            {
                dspr = new Butterworth1stLPF();
                dspl = new Butterworth1stLPF();
            }

            dspl.Process(left, out left);
            dspr.Process(right, out right);
        }