org.mp4parser.boxes.apple.CleanApertureAtom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isoparser Show documentation
Show all versions of isoparser Show documentation
A generic parser and writer for all ISO 14496 based files (MP4, Quicktime, DCF, PDCF, ...)
The newest version!
package org.mp4parser.boxes.apple;
import org.mp4parser.support.AbstractFullBox;
import org.mp4parser.tools.IsoTypeReader;
import org.mp4parser.tools.IsoTypeWriter;
import java.nio.ByteBuffer;
/**
* 4cc = "{@value #TYPE}"
* 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'.
*/
public class CleanApertureAtom extends AbstractFullBox {
public static final String TYPE = "clef";
double width;
double height;
public CleanApertureAtom() {
super(TYPE);
}
@Override
protected long getContentSize() {
return 12;
}
@Override
protected void getContent(ByteBuffer byteBuffer) {
writeVersionAndFlags(byteBuffer);
IsoTypeWriter.writeFixedPoint1616(byteBuffer, width);
IsoTypeWriter.writeFixedPoint1616(byteBuffer, height);
}
@Override
protected void _parseDetails(ByteBuffer content) {
parseVersionAndFlags(content);
width = IsoTypeReader.readFixedPoint1616(content);
height = IsoTypeReader.readFixedPoint1616(content);
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public double getHeight() {
return height;
}
public void setHeight(double height) {
this.height = height;
}
}