FileDocCategorySizeDatePackage
UnknownBox.javaAPI Docmp4parser 1.0-RC-171539Wed Dec 19 20:10:38 GMT 2012com.coremedia.iso.boxes

UnknownBox

public class UnknownBox extends com.googlecode.mp4parser.AbstractBox
A box unknown to the ISO Parser. If there is no specific Box implementation for a Box this UnknownBox will just hold the box's data.

Fields Summary
ByteBuffer
data
Constructors Summary
public UnknownBox(String type)

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

        data = content;
        content.position(content.position() + content.remaining());
    
protected voidgetContent(java.nio.ByteBuffer byteBuffer)

        data.rewind();
        byteBuffer.put(data);
    
protected longgetContentSize()

        return data.limit();
    
public java.nio.ByteBuffergetData()

        return data;
    
public voidsetData(java.nio.ByteBuffer data)

        this.data = data;