init() 개인적인 메소드

private init ( int n ) : void
n int
리턴 void
예제 #1
0
파일: Lpc.cs 프로젝트: lioncash/csvorbis
        internal void init(int mapped, int m)
        {
            ln     = mapped;
            this.m = m;

            // we cheat decoding the LPC spectrum via FFTs
            fft.init(mapped * 2);
        }
예제 #2
0
        internal void init(int mapped, int m)
        {
            //memset(l,0,sizeof(lpc_lookup));

            ln     = mapped;
            this.m = m;

            // we cheat decoding the LPC spectrum via FFTs
            fft.init(mapped * 2);
        }