Examples of FilterBank


Examples of net.sourceforge.jaad.aac.filterbank.FilterBank

    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());
    LOGGER.log(Level.FINE, "sf: {0}", config.getSampleFrequency().getFrequency());
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.