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)
|
if (modes.Length == 0 && value < 0)
|
||||||
return;
|
return;
|
||||||
if (value < 0 || value >= modes.Length)
|
if (value < 0 || value >= modes.Length)
|
||||||
throw new InvalidOperationException();
|
throw new IndexOutOfRangeException();
|
||||||
this.EncoderMode = modes[value];
|
this.EncoderMode = modes[value];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -147,7 +147,7 @@ namespace CUETools.FlakeExe
|
|||||||
bool do_seektable = true;
|
bool do_seektable = true;
|
||||||
bool buffered = false;
|
bool buffered = false;
|
||||||
string coeffs = null;
|
string coeffs = null;
|
||||||
var settings = new FlakeWriterSettings();
|
var settings = new FlakeWriterSettings() { AllowNonSubset = true };
|
||||||
#if FINETUNE
|
#if FINETUNE
|
||||||
int finetune_depth = -1;
|
int finetune_depth = -1;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user