CellPositionInfo.cs 425 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. namespace DvdLib.Ifo
  7. {
  8. public class CellPositionInfo
  9. {
  10. public readonly ushort VOBId;
  11. public readonly byte CellId;
  12. internal CellPositionInfo(BinaryReader br)
  13. {
  14. VOBId = br.ReadUInt16();
  15. br.ReadByte();
  16. CellId = br.ReadByte();
  17. }
  18. }
  19. }