
org.mp4parser.streaming.input.aac.AdtsHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streaming Show documentation
Show all versions of streaming Show documentation
This package has a focus on streams. It can read A/V data from e.g. a network source.
package org.mp4parser.streaming.input.aac;
public class AdtsHeader {
int sampleFrequencyIndex;
int mpegVersion;
int layer;
int protectionAbsent;
int profile;
int sampleRate;
int channelconfig;
int original;
int home;
int copyrightedStream;
int copyrightStart;
int frameLength;
int bufferFullness;
int numAacFramesPerAdtsFrame;
int getSize() {
return 7 + (protectionAbsent == 0 ? 2 : 0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy