Package net.sourceforge.jaad.aac.syntax

Examples of net.sourceforge.jaad.aac.syntax.PCE.decode()


          if(config.channelConfiguration==ChannelConfiguration.CHANNEL_CONFIG_NONE) {
            //TODO: is this working correct? -> ISO 14496-3 part 1: 1.A.4.3
            in.skipBits(3); //PCE
            PCE pce = new PCE();
            pce.decode(in);
            config.profile = pce.getProfile();
            config.sampleFrequency = pce.getSampleFrequency();
            config.channelConfiguration = ChannelConfiguration.forInt(pce.getChannelCount());
          }
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.