mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move to file scoped namespaces.
This commit is contained in:
73
CD/Enums.cs
73
CD/Enums.cs
@@ -32,42 +32,41 @@
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace Aaru.Decoders.CD
|
||||
{
|
||||
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
||||
public enum TocAdr : byte
|
||||
{
|
||||
/// <summary>Q Sub-channel mode information not supplied</summary>
|
||||
NoInformation = 0x00,
|
||||
/// <summary>Q Sub-channel encodes current position data</summary>
|
||||
CurrentPosition = 0x01,
|
||||
/// <summary>Q Sub-channel encodes the media catalog number</summary>
|
||||
MediaCatalogNumber = 0x02,
|
||||
/// <summary>Q Sub-channel encodes the ISRC</summary>
|
||||
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
|
||||
}
|
||||
namespace Aaru.Decoders.CD;
|
||||
|
||||
public enum TocControl : byte
|
||||
{
|
||||
/// <summary>Stereo audio, no pre-emphasis</summary>
|
||||
TwoChanNoPreEmph = 0x00,
|
||||
/// <summary>Stereo audio with pre-emphasis</summary>
|
||||
TwoChanPreEmph = 0x01,
|
||||
/// <summary>If mask applied, track can be copied</summary>
|
||||
CopyPermissionMask = 0x02,
|
||||
/// <summary>Data track, recorded uninterrumpted</summary>
|
||||
DataTrack = 0x04,
|
||||
/// <summary>Data track, recorded incrementally</summary>
|
||||
DataTrackIncremental = 0x05,
|
||||
/// <summary>Quadraphonic audio, no pre-emphasis</summary>
|
||||
FourChanNoPreEmph = 0x08,
|
||||
/// <summary>Quadraphonic audio with pre-emphasis</summary>
|
||||
FourChanPreEmph = 0x09,
|
||||
/// <summary>Reserved mask</summary>
|
||||
ReservedMask = 0x0C
|
||||
}
|
||||
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
||||
public enum TocAdr : byte
|
||||
{
|
||||
/// <summary>Q Sub-channel mode information not supplied</summary>
|
||||
NoInformation = 0x00,
|
||||
/// <summary>Q Sub-channel encodes current position data</summary>
|
||||
CurrentPosition = 0x01,
|
||||
/// <summary>Q Sub-channel encodes the media catalog number</summary>
|
||||
MediaCatalogNumber = 0x02,
|
||||
/// <summary>Q Sub-channel encodes the ISRC</summary>
|
||||
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 TocControl : byte
|
||||
{
|
||||
/// <summary>Stereo audio, no pre-emphasis</summary>
|
||||
TwoChanNoPreEmph = 0x00,
|
||||
/// <summary>Stereo audio with pre-emphasis</summary>
|
||||
TwoChanPreEmph = 0x01,
|
||||
/// <summary>If mask applied, track can be copied</summary>
|
||||
CopyPermissionMask = 0x02,
|
||||
/// <summary>Data track, recorded uninterrumpted</summary>
|
||||
DataTrack = 0x04,
|
||||
/// <summary>Data track, recorded incrementally</summary>
|
||||
DataTrackIncremental = 0x05,
|
||||
/// <summary>Quadraphonic audio, no pre-emphasis</summary>
|
||||
FourChanNoPreEmph = 0x08,
|
||||
/// <summary>Quadraphonic audio with pre-emphasis</summary>
|
||||
FourChanPreEmph = 0x09,
|
||||
/// <summary>Reserved mask</summary>
|
||||
ReservedMask = 0x0C
|
||||
}
|
||||
Reference in New Issue
Block a user