Add more DVD sector tags

This commit is contained in:
Rebecca Wallander
2023-08-20 22:14:58 +02:00
parent d007f1ac9a
commit 48ec847fdf

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>