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

ItemDataBox

public class ItemDataBox extends com.googlecode.mp4parser.AbstractBox

Fields Summary
ByteBuffer
data
public static final String
TYPE
Constructors Summary
public ItemDataBox()



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

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

        byteBuffer.put(data);
    
protected longgetContentSize()

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

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

        this.data = data;