csvorbis.Block.clear C# (CSharp) Method

clear() public method

public clear ( ) : int
return int
        public int clear()
        {
            if(vd!=null)
            {
                if(vd.analysisp!=0)
                {
                    opb.writeclear();
                }
            }
            //ripcord();
            //if(localstore!=null)
            //  localstore=null;
            //memset(vb,0,sizeof(vorbis_block));
            return(0);
        }

Usage Example

Esempio n. 1
0
		// clear out the current logical bitstream decoder
		void decode_clear()
		{
			os.clear();
			vd.clear();
			vb.clear();
			decode_ready=false;
			bittrack=0.0f;
			samptrack=0.0f;
		}
All Usage Examples Of csvorbis.Block::clear