Package test3

Examples of test3.PublicInner2$PS


  private int decodeExtension(BitStream in, int extensionID) throws AACException {
    final int start = in.getPosition();

    switch(extensionID) {
      case EXTENSION_ID_PS:
        if(ps==null) ps = new PS();
        ps.decode(in);
        if(!psUsed&&ps.hasHeader()) psUsed = true;
        break;
      default:
        in.skipBits(6); //extension data
View Full Code Here

TOP

Related Classes of test3.PublicInner2$PS

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.