FileDocCategorySizeDatePackage
MLPSpecificBox.javaAPI Docmp4parser 1.0-RC-171868Wed Dec 19 20:10:37 GMT 2012com.googlecode.mp4parser.boxes

MLPSpecificBox

public class MLPSpecificBox extends com.googlecode.mp4parser.AbstractBox

Fields Summary
int
format_info
int
peak_data_rate
int
reserved
int
reserved2
Constructors Summary
public MLPSpecificBox()

        super("dmlp");
    
Methods Summary
public void_parseDetails(java.nio.ByteBuffer content)

        BitReaderBuffer brb = new BitReaderBuffer(content);
        format_info = brb.readBits(32);
        peak_data_rate = brb.readBits(15);
        reserved = brb.readBits(1);
        reserved2 = brb.readBits(32);
    
protected voidgetContent(java.nio.ByteBuffer byteBuffer)

        BitWriterBuffer bwb = new BitWriterBuffer(byteBuffer);
        bwb.writeBits(format_info, 32);
        bwb.writeBits(peak_data_rate, 15);
        bwb.writeBits(reserved, 1);
        bwb.writeBits(reserved2, 32);
        //To change body of implemented methods use File | Settings | File Templates.
    
protected longgetContentSize()

        return 10;
    
public intgetFormat_info()

        return format_info;
    
public intgetPeak_data_rate()

        return peak_data_rate;
    
public intgetReserved()

        return reserved;
    
public intgetReserved2()

        return reserved2;
    
public voidsetFormat_info(int format_info)

        this.format_info = format_info;
    
public voidsetPeak_data_rate(int peak_data_rate)

        this.peak_data_rate = peak_data_rate;
    
public voidsetReserved(int reserved)

        this.reserved = reserved;
    
public voidsetReserved2(int reserved2)

        this.reserved2 = reserved2;