mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
* Fix case collision between FLAKE and Flake. * Keep only necessary changes of PR#52 Co-authored-by: Wolfgang Stöggl <c72578@yahoo.de>
12 lines
202 B
C#
12 lines
202 B
C#
namespace CUETools.Codecs.Flake
|
|
{
|
|
public enum ChannelMode
|
|
{
|
|
NotStereo = 0,
|
|
LeftRight = 1,
|
|
LeftSide = 8,
|
|
RightSide = 9,
|
|
MidSide = 10
|
|
}
|
|
}
|