net.sourceforge.jaad.aac.syntax.SCE_LFE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcodec Show documentation
Show all versions of jcodec Show documentation
Pure Java implementation of video/audio codecs and formats
package net.sourceforge.jaad.aac.syntax;
import net.sourceforge.jaad.aac.AACException;
import net.sourceforge.jaad.aac.DecoderConfig;
/**
* This class is part of JAAD ( jaadec.sourceforge.net ) that is distributed
* under the Public Domain license. Code changes provided by the JCodec project
* are distributed under FreeBSD license.
*
* @author in-somnia
*/
class SCE_LFE extends Element {
private final ICStream ics;
SCE_LFE(int frameLength) {
super();
ics = new ICStream(frameLength);
}
void decode(IBitStream _in, DecoderConfig conf) throws AACException {
readElementInstanceTag(_in);
ics.decode(_in, false, conf);
}
public ICStream getICStream() {
return ics;
}
}