Package net.sourceforge.jaad.aac.tools

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


    //inverse quantization
    final float[] iqData = ics.getInvQuantData();

    //prediction
    if(profile.equals(Profile.AAC_MAIN)&&info.isICPredictionPresent()) info.getICPrediction().process(ics, iqData, sf);
    if(LTPrediction.isLTPProfile(profile)&&info.isLTPrediction1Present()) ltp.process(ics, iqData, filterBank, sf);

    //dependent coupling
    processDependentCoupling(false, elementID, CCE.BEFORE_TNS, iqData, null);

    //TNS
View Full Code Here


    IS.process(cpe, iqData1, iqData2);

    //LTP
    if(LTPrediction.isLTPProfile(profile)) {
      if(info1.isLTPrediction1Present()) ltp1.process(ics1, iqData1, filterBank, sf);
      if(cpe.isCommonWindow()&&info1.isLTPrediction2Present()) ltp2.process(ics2, iqData2, filterBank, sf);
      else if(info2.isLTPrediction1Present()) ltp2.process(ics2, iqData2, filterBank, sf);
    }

    //dependent coupling
    processDependentCoupling(true, elementID, CCE.BEFORE_TNS, iqData1, iqData2);
View Full Code Here

    //LTP
    if(LTPrediction.isLTPProfile(profile)) {
      if(info1.isLTPrediction1Present()) ltp1.process(ics1, iqData1, filterBank, sf);
      if(cpe.isCommonWindow()&&info1.isLTPrediction2Present()) ltp2.process(ics2, iqData2, filterBank, sf);
      else if(info2.isLTPrediction1Present()) ltp2.process(ics2, iqData2, filterBank, sf);
    }

    //dependent coupling
    processDependentCoupling(true, elementID, CCE.BEFORE_TNS, iqData1, iqData2);
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.