mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Allow non-subset modes for command-line flac encoders by default for now
This commit is contained in:
@@ -116,7 +116,7 @@ namespace CUETools.Codecs
|
||||
if (modes.Length == 0 && value < 0)
|
||||
return;
|
||||
if (value < 0 || value >= modes.Length)
|
||||
throw new InvalidOperationException();
|
||||
throw new IndexOutOfRangeException();
|
||||
this.EncoderMode = modes[value];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -147,7 +147,7 @@ namespace CUETools.FlakeExe
|
||||
bool do_seektable = true;
|
||||
bool buffered = false;
|
||||
string coeffs = null;
|
||||
var settings = new FlakeWriterSettings();
|
||||
var settings = new FlakeWriterSettings() { AllowNonSubset = true };
|
||||
#if FINETUNE
|
||||
int finetune_depth = -1;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user