mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
14 lines
328 B
C#
14 lines
328 B
C#
|
|
namespace CUETools.Codecs.LAME.Interop
|
|||
|
|
{
|
|||
|
|
/* MPEG modes */
|
|||
|
|
public enum MpegMode : uint
|
|||
|
|
{
|
|||
|
|
STEREO = 0,
|
|||
|
|
JOINT_STEREO,
|
|||
|
|
DUAL_CHANNEL, /* LAME doesn't supports this! */
|
|||
|
|
MONO,
|
|||
|
|
NOT_SET,
|
|||
|
|
MAX_INDICATOR /* Don't use this! It's used for sanity checks. */
|
|||
|
|
}
|
|||
|
|
}
|