mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
37 lines
835 B
C#
37 lines
835 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
using System;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace CUETools.Codecs.WAV
|
|||
|
|
{
|
|||
|
|
[JsonObject(MemberSerialization.OptIn)]
|
|||
|
|
public class DecoderSettings : IAudioDecoderSettings
|
|||
|
|
{
|
|||
|
|
#region IAudioDecoderSettings implementation
|
|||
|
|
[Browsable(false)]
|
|||
|
|
public string Extension => "wav";
|
|||
|
|
|
|||
|
|
[Browsable(false)]
|
|||
|
|
public string Name => "cuetools";
|
|||
|
|
|
|||
|
|
[Browsable(false)]
|
|||
|
|
public Type DecoderType => typeof(AudioDecoder);
|
|||
|
|
|
|||
|
|
[Browsable(false)]
|
|||
|
|
public int Priority => 2;
|
|||
|
|
|
|||
|
|
public IAudioDecoderSettings Clone()
|
|||
|
|
{
|
|||
|
|
return MemberwiseClone() as IAudioDecoderSettings;
|
|||
|
|
}
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
public DecoderSettings()
|
|||
|
|
{
|
|||
|
|
this.Init();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public bool IgnoreChunkSizes { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|