mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
19 lines
476 B
C#
19 lines
476 B
C#
using System.ComponentModel;
|
|
|
|
namespace CUETools.Codecs.LAME
|
|
{
|
|
public class LAMEEncoderVBRSettings
|
|
{
|
|
[DefaultValue(LAMEEncoderVBRProcessingQuality.Normal)]
|
|
public LAMEEncoderVBRProcessingQuality Quality { get; set; }
|
|
|
|
public LAMEEncoderVBRSettings()
|
|
{
|
|
// Iterate through each property and call ResetValue()
|
|
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
|
|
property.ResetValue(this);
|
|
}
|
|
}
|
|
}
|
|
}
|