mp4box
Version:
JavaScript version of GPAC's MP4Box tool
9 lines • 339 B
JavaScript
BoxParser.createFullBoxCtor("cmin", "CameraIntrinsicMatrixProperty", function(stream) {
this.focal_length_x = stream.readInt32();
this.principal_point_x = stream.readInt32();
this.principal_point_y = stream.readInt32();
if (this.flags & 0x1) {
this.focal_length_y = stream.readInt32();
this.skew_factor = stream.readInt32();
}
});