Merge pull request #7 from aaru-dps/fakeshemp/ecma-267

Add more DVD sector tags
This commit is contained in:
2023-08-22 00:20:21 +01:00
committed by GitHub

View File

@@ -108,13 +108,21 @@ public enum SectorTagType
/// <summary>CD track flags, 1 byte</summary>
CdTrackFlags = 11,
/// <summary>DVD sector copyright information</summary>
DvdCmi = 12,
DvdSectorCmi = 12,
/// <summary>Floppy address mark (contents depend on underlying floppy format)</summary>
FloppyAddressMark = 13,
/// <summary>DVD sector title key, 5 bytes</summary>
DvdTitleKey = 14,
DvdSectorTitleKey = 14,
/// <summary>Decrypted DVD sector title key, 5 bytes</summary>
DvdTitleKeyDecrypted = 15
DvdTitleKeyDecrypted = 15,
/// <summary>DVD sector information, 1 bytes</summary>
DvdSectorInformation = 16,
/// <summary>DVD sector number, 3 bytes</summary>
DvdSectorNumber = 17,
/// <summary>DVD sector ID error detection, 2 bytes</summary>
DvdSectorIed = 18,
/// <summary>DVD sector EDC, 4 bytes</summary>
DvdSectorEdc = 19
}
/// <summary>Metadata present for each media.</summary>