// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Enums.cs // Version : 1.0 // Author(s) : Natalia Portillo // // Component : Component // // Revision : $Revision$ // Last change by : $Author$ // Date : $Date$ // // --[ Description ] ---------------------------------------------------------- // // Description // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright (C) 2011-2015 Claunia.com // ****************************************************************************/ // //$Id$ using System; namespace DiscImageChef.Decoders.CD { public enum TOC_ADR : byte { /// /// Q Sub-channel mode information not supplied /// NoInformation = 0x00, /// /// Q Sub-channel encodes current position data /// CurrentPosition = 0x01, /// /// Q Sub-channel encodes the media catalog number /// MediaCatalogNumber = 0x02, /// /// Q Sub-channel encodes the ISRC /// ISRC = 0x03, /// /// Q Sub-channel encodes the start of an audio/data track (if found in TOC) /// TrackPointer = 0x01, /// /// Q Sub-channel encodes the start of a video track (if found in TOC) for CD-V /// VideoTrackPointer = 0x04, } public enum TOC_CONTROL : byte { /// /// Stereo audio, no pre-emphasis /// TwoChanNoPreEmph = 0x00, /// /// Stereo audio with pre-emphasis /// TwoChanPreEmph = 0x01, /// /// If mask applied, track can be copied /// CopyPermissionMask = 0x02, /// /// Data track, recorded uninterrumpted /// DataTrack = 0x04, /// /// Data track, recorded incrementally /// DataTrackIncremental = 0x05, /// /// Quadraphonic audio, no pre-emphasis /// FourChanNoPreEmph = 0x08, /// /// Quadraphonic audio with pre-emphasis /// FourChanPreEmph = 0x09, /// /// Reserved mask /// ReservedMask = 0x0C } }