2013-04-07 20:41:58 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-03-23 19:26:26 -04:00
|
|
|
|
namespace CUETools.Codecs.WAV
|
2013-04-07 20:41:58 -04:00
|
|
|
|
{
|
2018-03-23 19:26:26 -04:00
|
|
|
|
public class EncoderSettings : AudioEncoderSettings
|
2013-04-07 20:41:58 -04:00
|
|
|
|
{
|
2018-03-23 19:26:26 -04:00
|
|
|
|
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()
|
2013-04-07 20:41:58 -04:00
|
|
|
|
: this(null)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-03-23 19:26:26 -04:00
|
|
|
|
public EncoderSettings(AudioPCMConfig pcm)
|
2013-04-07 20:41:58 -04:00
|
|
|
|
: base(pcm)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|