mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
20 lines
420 B
C#
20 lines
420 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace CUETools.Codecs.WAV
|
|||
|
|
{
|
|||
|
|
public class DecoderSettings : AudioDecoderSettings
|
|||
|
|
{
|
|||
|
|
public override string Name => "cuetools";
|
|||
|
|
|
|||
|
|
public override string Extension => "wav";
|
|||
|
|
|
|||
|
|
public override Type DecoderType => typeof(AudioDecoder);
|
|||
|
|
|
|||
|
|
public override int Priority => 2;
|
|||
|
|
|
|||
|
|
public DecoderSettings() : base() { }
|
|||
|
|
|
|||
|
|
public bool IgnoreChunkSizes;
|
|||
|
|
}
|
|||
|
|
}
|