Examples of SBR


Examples of net.sourceforge.jaad.aac.sbr2.SBR

  public int getElementInstanceTag() {
    return elementInstanceTag;
  }

  void decodeSBR(BitStream in, SampleFrequency sf, int count, boolean stereo, boolean crc, boolean downSampled) throws AACException {
    if(sbr==null) sbr = new SBR(sf, downSampled);
    sbr.decode(in, count, stereo, crc);
  }
View Full Code Here

Examples of net.sourceforge.jaad.aac.sbr2.SBR

    //SBR
    int chs = 1;
    if(sbrPresent) {
      if(data[channel].length==config.getFrameLength()) LOGGER.log(Level.WARNING, "SBR data present, but buffer has normal size!");
      final SBR sbr = scelfe.getSBR();
      if(sbr.isPSUsed()) {
        chs = 2;
        scelfe.getSBR().process(data[channel], data[channel+1], false);
      }
      else scelfe.getSBR().process(data[channel], null, false);
    }
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.