Package net.sourceforge.jaad.aac.syntax

Examples of net.sourceforge.jaad.aac.syntax.SyntacticElements


    config = DecoderConfig.parseMP4DecoderSpecificInfo(decoderSpecificInfo);
    if(config==null) throw new IllegalArgumentException("illegal MP4 decoder specific info");

    if(!canDecode(config.getProfile())) throw new AACException("unsupported profile: "+config.getProfile().getDescription());

    syntacticElements = new SyntacticElements(config);
    filterBank = new FilterBank(config.isSmallFrameUsed(), config.getChannelConfiguration().getChannelCount());

    in = new BitStream();

    LOGGER.log(Level.FINE, "profile: {0}", config.getProfile());
View Full Code Here

TOP

Related Classes of net.sourceforge.jaad.aac.syntax.SyntacticElements

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.