Code reformat.

This commit is contained in:
2019-11-25 00:54:31 +00:00
parent 2e73c622cf
commit 16f61defb8
5 changed files with 15 additions and 11 deletions

View File

@@ -59,9 +59,11 @@ namespace DiscImageChef.CommonTypes.Enums
None = 0, /// <summary>Subchannel is packed and error corrected</summary>
Packed = 1, /// <summary>Subchannel is interleaved</summary>
Raw = 2, /// <summary>Subchannel is packed and comes interleaved with main channel in same file</summary>
PackedInterleaved = 3, /// <summary>Subchannel is interleaved and comes interleaved with main channel in same file</summary>
PackedInterleaved = 3,
/// <summary>Subchannel is interleaved and comes interleaved with main channel in same file</summary>
RawInterleaved = 4, /// <summary>Only Q subchannel is stored as 16 bytes</summary>
Q16 = 5, /// <summary>Only Q subchannel is stored as 16 bytes and comes interleaved with main channel in same file</summary>
Q16 = 5,
/// <summary>Only Q subchannel is stored as 16 bytes and comes interleaved with main channel in same file</summary>
Q16Interleaved = 6
}