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

UserDataBox

public class UserDataBox extends com.googlecode.mp4parser.AbstractContainerBox
This box contains objects that declare user information about the containing box and its data (presentation or track).
The User Data Box is a container box for informative user-data. This user data is formatted as a set of boxes with more specific box types, which declare more precisely their content

Fields Summary
public static final String
TYPE
Constructors Summary
public UserDataBox()

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

        super._parseDetails(content);    //To change body of overridden methods use File | Settings | File Templates.
    
protected voidgetContent(java.nio.ByteBuffer byteBuffer)

        super.getContent(byteBuffer);    //To change body of overridden methods use File | Settings | File Templates.
    
protected longgetContentSize()


    
       
        return super.getContentSize();    //To change body of overridden methods use File | Settings | File Templates.
    
public voidparse(java.nio.channels.ReadableByteChannel readableByteChannel, java.nio.ByteBuffer header, long contentSize, com.coremedia.iso.BoxParser boxParser)

        super.parse(readableByteChannel, header, contentSize, boxParser);    //To change body of overridden methods use File | Settings | File Templates.