Package net.sourceforge.jaad.aac.tools

Examples of net.sourceforge.jaad.aac.tools.LTPrediction.updateState()


    processDependentCoupling(false, elementID, CCE.AFTER_TNS, iqData, null);

    //filterbank
    filterBank.process(info.getWindowSequence(), info.getWindowShape(ICSInfo.CURRENT), info.getWindowShape(ICSInfo.PREVIOUS), iqData, data[channel], channel);

    if(LTPrediction.isLTPProfile(profile)) ltp.updateState(data[channel], filterBank.getOverlap(channel), profile);

    //dependent coupling
    processIndependentCoupling(false, elementID, data[channel], null);

    //gain control
View Full Code Here


    filterBank.process(info1.getWindowSequence(), info1.getWindowShape(ICSInfo.CURRENT), info1.getWindowShape(ICSInfo.PREVIOUS), iqData1, data[channel], channel);
    filterBank.process(info2.getWindowSequence(), info2.getWindowShape(ICSInfo.CURRENT), info2.getWindowShape(ICSInfo.PREVIOUS), iqData2, data[channel+1], channel+1);

    if(LTPrediction.isLTPProfile(profile)) {
      ltp1.updateState(data[channel], filterBank.getOverlap(channel), profile);
      ltp2.updateState(data[channel+1], filterBank.getOverlap(channel+1), profile);
    }

    //independent coupling
    processIndependentCoupling(true, elementID, data[channel], data[channel+1]);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.