Package davaguine.jmac.prediction

Examples of davaguine.jmac.prediction.PredictorCompressNormal


    public APECompressCore(File pIO, WaveFormat pwfeInput, int nMaxFrameBlocks, int nCompressionLevel) {
        m_spBitArray = new BitArray(pIO);
        m_spDataX = new int[nMaxFrameBlocks];
        m_spDataY = new int[nMaxFrameBlocks];
        m_spPrepare = new Prepare();
        m_spPredictorX = new PredictorCompressNormal(nCompressionLevel);
        m_spPredictorY = new PredictorCompressNormal(nCompressionLevel);

        m_wfeInput = pwfeInput;
        m_nPeakLevel.value = 0;
    }
View Full Code Here

TOP

Related Classes of davaguine.jmac.prediction.PredictorCompressNormal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.