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

CleanApertureAtom

public class CleanApertureAtom extends com.googlecode.mp4parser.AbstractFullBox
A container atom that stores information for video correction in the form of three required atoms. This atom is optionally included in the track atom. The type of the track aperture mode dimensions atom is 'tapt'.

Fields Summary
public static final String
TYPE
double
width
double
height
Constructors Summary
public CleanApertureAtom()


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

        parseVersionAndFlags(content);
        width = IsoTypeReader.readFixedPoint1616(content);
        height = IsoTypeReader.readFixedPoint1616(content);
    
protected voidgetContent(java.nio.ByteBuffer byteBuffer)

        writeVersionAndFlags(byteBuffer);
        IsoTypeWriter.writeFixedPoint1616(byteBuffer, width);
        IsoTypeWriter.writeFixedPoint1616(byteBuffer, height);
    
protected longgetContentSize()

        return 12;
    
public doublegetHeight()

        return height;
    
public doublegetWidth()

        return width;
    
public voidsetHeight(double height)

        this.height = height;
    
public voidsetWidth(double width)

        this.width = width;