namespace MPF.Core.Data { /// /// Disc Information and Emergency Brake data shall be read from the PIC zone. DI units that /// contain physical information shall be returned.Emergency Brake data shall be returned.The /// information shall be collected from the layer specified in the Layer field of the CDB. If any data /// can be returned, 4 100 bytes shall be returned. /// /// /// public class PICDiscInformation { #region Fields /// /// 2048 bytes for BD-ROM, 3584 bytes for BD-R/RE /// /// Big-endian format public ushort DataStructureLength { get; set; } /// /// Should be 0x00 /// public byte Reserved0 { get; set; } /// /// Should be 0x00 /// public byte Reserved1 { get; set; } /// /// Disc information and emergency brake units /// public PICDiscInformationUnit[] Units { get; set; } #endregion } }