Package net.sourceforge.jaad.aac.error

Examples of net.sourceforge.jaad.aac.error.RVLC


    scaleFactors = new float[MAX_SECTIONS];
  }

  /* ========= decoding ========== */
  public void decode(BitStream in, boolean commonWindow, DecoderConfig conf) throws AACException {
    if(conf.isScalefactorResilienceUsed()&&rvlc==null) rvlc = new RVLC();
    final boolean er = conf.getProfile().isErrorResilientProfile();

    globalGain = in.readBits(8);

    if(!commonWindow) info.decode(in, conf, commonWindow);
View Full Code Here

TOP

Related Classes of net.sourceforge.jaad.aac.error.RVLC

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.