Exemple #1
0
            unsafe public void ReaderCallback(float[] data)
            {
                IFPCMFactory        pcmFactory = FPCMFactory.Instance;
                FPCMFactoryGenLimit fgl        = new FPCMFactoryGenLimit(pcmFactory, data.Length);

                this.Set(data, data.Length, fgl);
            }
 public FPCMScopedFactory(IFPCMFactory parent)
 {
     this.parent = parent;
 }
Exemple #3
0
 public FPCMFactoryGenLimit(IFPCMFactory parent, int sampleCount)
     : base(parent)
 {
     this.sampleCount = sampleCount;
 }