* DiscImageChef.Decoders/CD/Enums.cs:

* DiscImageChef/Commands/MediaInfo.cs:
	* DiscImageChef.CommonTypes/DiskType.cs:
	  Added support for CD-V.

	* DiscImageChef.Decoders/CD/TOC.cs:
	* DiscImageChef.Decoders/CD/FullTOC.cs:
	  Added support for CD-V.
	Added support for CD-DA.
This commit is contained in:
2015-12-03 09:31:06 +00:00
parent 3d337f03ae
commit b3ec79b7ae
8 changed files with 151 additions and 27 deletions

View File

@@ -56,7 +56,15 @@ namespace DiscImageChef.Decoders.CD
/// <summary>
/// Q Sub-channel encodes the ISRC
/// </summary>
ISRC = 0x03
ISRC = 0x03,
/// <summary>
/// Q Sub-channel encodes the start of an audio/data track (if found in TOC)
/// </summary>
TrackPointer = 0x01,
/// <summary>
/// Q Sub-channel encodes the start of a video track (if found in TOC) for CD-V
/// </summary>
VideoTrackPointer = 0x04,
}
public enum TOC_CONTROL : byte