All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mp4parser.streaming.input.aac.AdtsHeader Maven / Gradle / Ivy

Go to download

This package has a focus on streams. It can read A/V data from e.g. a network source.

There is a newer version: 1.9.56
Show newest version
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