mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
30 lines
615 B
C#
30 lines
615 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CUETools.Codecs.WAV
|
|
{
|
|
public class EncoderSettings : AudioEncoderSettings
|
|
{
|
|
public override string Extension => "wav";
|
|
|
|
public override string Name => "cuetools";
|
|
|
|
public override Type EncoderType => typeof(WAV.AudioEncoder);
|
|
|
|
public override int Priority => 10;
|
|
|
|
public override bool Lossless => true;
|
|
|
|
public EncoderSettings()
|
|
: this(null)
|
|
{
|
|
}
|
|
|
|
public EncoderSettings(AudioPCMConfig pcm)
|
|
: base(pcm)
|
|
{
|
|
}
|
|
}
|
|
}
|