mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Removed AudioEncoderSettings/AudioDecoderSettings classes, all of their functionality is now in IAudioEncoderSettings/IAudioDecoderSettings interfaces.
This commit is contained in:
@@ -930,25 +930,13 @@ namespace CUETools.AccurateRip
|
||||
throw new Exception("unsupported");
|
||||
}
|
||||
|
||||
public AudioEncoderSettings Settings
|
||||
{
|
||||
get
|
||||
{
|
||||
return new AudioEncoderSettings(AudioPCMConfig.RedBook);
|
||||
}
|
||||
}
|
||||
public IAudioEncoderSettings Settings => new Codecs.WAV.EncoderSettings(AudioPCMConfig.RedBook);
|
||||
|
||||
public CDImageLayout TOC
|
||||
{
|
||||
get { return _toc; }
|
||||
}
|
||||
public CDImageLayout TOC => _toc;
|
||||
|
||||
public long FinalSampleCount
|
||||
{
|
||||
get
|
||||
{
|
||||
return _finalSampleCount;
|
||||
}
|
||||
get => _finalSampleCount;
|
||||
set
|
||||
{
|
||||
if (value != _finalSampleCount)
|
||||
|
||||
@@ -413,15 +413,9 @@ namespace CUETools.AccurateRip
|
||||
throw new Exception("unsupported");
|
||||
}
|
||||
|
||||
public AudioEncoderSettings Settings
|
||||
{
|
||||
get
|
||||
{
|
||||
return new AudioEncoderSettings(AudioPCMConfig.RedBook);
|
||||
}
|
||||
}
|
||||
public IAudioEncoderSettings Settings => new Codecs.WAV.EncoderSettings(AudioPCMConfig.RedBook);
|
||||
|
||||
public string Path
|
||||
public string Path
|
||||
{
|
||||
get { throw new Exception("unsupported"); }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user