2011-10-24 08:42:30 +00:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using CUETools.Codecs.LAME.Interop;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CUETools.Codecs.LAME
|
|
|
|
|
|
{
|
2013-04-01 23:03:22 -04:00
|
|
|
|
public class LAMEEncoderCBRSettings : AudioEncoderSettings
|
2011-10-24 08:42:30 +00:00
|
|
|
|
{
|
2013-04-01 23:03:22 -04:00
|
|
|
|
public static readonly uint[] bps_table = new uint[] { 96, 128, 192, 256, 320 };
|
|
|
|
|
|
|
2011-10-24 08:42:30 +00:00
|
|
|
|
[DefaultValue(0)]
|
|
|
|
|
|
public int CustomBitrate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DefaultValue(MpegMode.STEREO)]
|
|
|
|
|
|
public MpegMode StereoMode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public LAMEEncoderCBRSettings()
|
2013-04-01 23:03:22 -04:00
|
|
|
|
: base("96 128 192 256 320", "256")
|
2011-10-24 08:42:30 +00:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|