2.0.9 release

This commit is contained in:
chudov
2010-05-18 17:18:37 +00:00
parent 04891612f5
commit 769a85f827
82 changed files with 3593 additions and 2517 deletions

View File

@@ -287,15 +287,24 @@ namespace CUETools.DSP.Mixer
set { throw new NotSupportedException(); }
}
public string Options
public object Settings
{
get
{
return null;
}
set
{
if (value == null || value == "") return;
throw new NotSupportedException("Unsupported options " + value);
if (value != null && value.GetType() != typeof(object))
throw new Exception("Unsupported options " + value);
}
}
public long Padding
{
set { }
}
public AudioPCMConfig PCM
{
get { return mixer.PCM; }