* DiscImageChef.Decoders/CD/ATIP.cs:

Added disc type and manufacturer lookup from ATIP.

	* DiscImageChef.Decoders/CD/PMA.cs:
	  Implement full PMA decoding.

	* DiscImageChef.Decoders/CD/FullTOC.cs:
	  Implement decoding disc ID.

	* DiscImageChef.Decoders/SCSI/MMC/DiscInformation.cs:
	  Disc ID is 24-bit.

	* DiscImageChef.Decoders/CD/CDTextOnLeadIn.cs:
	  CD-TEXT can be empty without being null, do not decode an
	  empty one.
This commit is contained in:
2015-12-04 07:26:03 +00:00
parent b21a807ae1
commit 49bd03cecb
6 changed files with 486 additions and 16 deletions

View File

@@ -436,7 +436,7 @@ namespace DiscImageChef.Decoders.SCSI.MMC
sb.AppendLine("Disc is defined for restricted use");
if (decoded.DID_V)
sb.AppendFormat("Disc ID: {0:X8}", decoded.DiscIdentification).AppendLine();
sb.AppendFormat("Disc ID: {0:X6}", decoded.DiscIdentification & 0x00FFFFFF).AppendLine();
if (decoded.DBC_V)
sb.AppendFormat("Disc barcode: {0:X16}", decoded.DiscBarcode).AppendLine();
if (decoded.DAC_V)