csvorbis.Drft.init C# (CSharp) Method

init() private method

private init ( int n ) : void
n int
return void
        internal void init(int n)
        {
            this.n=n;
            trigcache=new float[3*n];
            splitcache=new int[32];
            fdrffti(n, trigcache, splitcache);
        }

Usage Example

Esempio n. 1
0
        internal void init(int mapped, int m)
        {
            ln     = mapped;
            this.m = m;

            // we cheat decoding the LPC spectrum via FFTs
            fft.init(mapped * 2);
        }
All Usage Examples Of csvorbis.Drft::init