mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
23 lines
336 B
C#
23 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CUETools.Codecs.libmp3lame
|
|
{
|
|
public enum LameQuality
|
|
{
|
|
High = 2,
|
|
Normal = 5,
|
|
Fast = 7,
|
|
}
|
|
|
|
public enum LameVbrMode
|
|
{
|
|
Off = 0,
|
|
Mt = 1,
|
|
Rh = 2,
|
|
Abr = 3,
|
|
Default = 4,
|
|
}
|
|
}
|