mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Code cleanup; Reader classes renamed to Decoders, Writers to Encoders, every Decoder must have a corresponding Settings class now just like Encoders. UserDefinedEncoders renamed to CommandLineEncoders, etc.
This commit is contained in:
@@ -25,8 +25,8 @@ namespace CUETools.Processor
|
||||
arcp = new List<Type>();
|
||||
arcp_fmt = new List<string>();
|
||||
|
||||
encs.Add(typeof(CUETools.Codecs.WAVWriter));
|
||||
decs.Add(typeof(CUETools.Codecs.WAVReader));
|
||||
encs.Add(typeof(CUETools.Codecs.WAV.AudioEncoder));
|
||||
decs.Add(typeof(CUETools.Codecs.WAV.AudioDecoder));
|
||||
|
||||
//ApplicationSecurityInfo asi = new ApplicationSecurityInfo(AppDomain.CurrentDomain.ActivationContext);
|
||||
//string arch = asi.ApplicationId.ProcessorArchitecture;
|
||||
@@ -67,7 +67,7 @@ namespace CUETools.Processor
|
||||
{
|
||||
try
|
||||
{
|
||||
if (Attribute.GetCustomAttribute(type, typeof(AudioDecoderClass)) != null)
|
||||
if (Attribute.GetCustomAttribute(type, typeof(AudioDecoderClassAttribute)) != null)
|
||||
{
|
||||
decs.Add(type);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user