Examples of ICPrediction


Examples of net.sourceforge.jaad.aac.tools.ICPrediction

  }

  private void readPredictionData(BitStream in, Profile profile, SampleFrequency sf, boolean commonWindow) throws AACException {
    switch(profile) {
      case AAC_MAIN:
        if(icPredict==null) icPredict = new ICPrediction();
        icPredict.decode(in, maxSFB, sf);
        break;
      case AAC_LTP:
        if(ltpData1Present = in.readBool()) {
          if(ltPredict1==null) ltPredict1 = new LTPrediction(frameLength);
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.