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

ActionMessageFormat0SampleEntryBox

public class ActionMessageFormat0SampleEntryBox extends com.coremedia.iso.boxes.sampleentry.SampleEntry
Sample Entry as used for Action Message Format tracks.

Fields Summary
Constructors Summary
public ActionMessageFormat0SampleEntryBox()

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

        _parseReservedAndDataReferenceIndex(content);
        _parseChildBoxes(content);
    
protected voidgetContent(java.nio.ByteBuffer byteBuffer)

        _writeReservedAndDataReferenceIndex(byteBuffer);
        _writeChildBoxes(byteBuffer);
    
protected longgetContentSize()

        long size = 8;
        for (Box box : boxes) {
            size += box.getSize();
        }

        return size;