csvorbis.Block.init C# (CSharp) Method

init() public method

public init ( DspState vd ) : void
vd DspState
return void
        public void init(DspState vd)
        {
            this.vd=vd;
        }

Usage Example

Esempio n. 1
0
		int make_decode_ready()
		{
#if NET_2_1
			if(decode_ready) throw new Exception ("make_decode_ready: 1");
#else
			if(decode_ready)Environment.Exit(1);
#endif
			vd.synthesis_init(vi[0]);
			vb.init(vd);
			decode_ready=true;
			return(0);
		}
All Usage Examples Of csvorbis.Block::init