mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Cleanup IAudioDest; CompressionLevel is now part of AudioEncoderSettings.
FLAC encoders no longer offer non-subset compression levels by default.
This commit is contained in:
@@ -176,8 +176,11 @@ namespace CUETools.ALACEnc
|
||||
|
||||
try
|
||||
{
|
||||
if (level >= 0)
|
||||
alac.CompressionLevel = level;
|
||||
var settings = new ALACWriterSettings();
|
||||
settings.DoVerify = do_verify;
|
||||
if (level >= 0)
|
||||
settings.EncoderModeIndex = level;
|
||||
alac.Settings = settings;
|
||||
if (stereo_method != null)
|
||||
alac.StereoMethod = Alac.LookupStereoMethod(stereo_method);
|
||||
if (order_method != null)
|
||||
|
||||
Reference in New Issue
Block a user