Add decoder for MMC Track Information.

This commit is contained in:
2020-06-16 20:03:30 +01:00
parent 02fa1a1b0f
commit 97e4a6ead9
3 changed files with 82 additions and 0 deletions

View File

@@ -68,4 +68,10 @@ namespace Aaru.Decoders.SCSI.MMC
/// <summary>Also valid for CD-DA, DVD and BD</summary>
CDROM = 0x00, CDi = 0x10, CDROMXA = 0x20, Undefined = 0xFF
}
public enum LayerJumpRecordingStatus : byte
{
Incremental = 0, Unspecified = 1, Manual = 2,
RegularInterval = 3
}
}