Allow non-subset modes for command-line flac encoders by default for now

This commit is contained in:
Grigory Chudov
2013-04-07 21:58:46 -04:00
parent 31c131bdb3
commit ef5f5e6d4c
2 changed files with 2 additions and 2 deletions

View File

@@ -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];
} }
} }

View File

@@ -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