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:
@@ -22,7 +22,7 @@ using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.IO;
|
||||
using CUETools.Codecs;
|
||||
using CUETools.Codecs.FLAKE;
|
||||
using CUETools.Codecs.Flake;
|
||||
using CUETools.Codecs.FLACCL;
|
||||
|
||||
namespace CUETools.FLACCL.cmd
|
||||
@@ -209,7 +209,7 @@ namespace CUETools.FLACCL.cmd
|
||||
else if (args[arg] != "-" && args[arg][0] == '-' && int.TryParse(args[arg].Substring(1), out level))
|
||||
{
|
||||
ok = level >= 0 && level <= 11;
|
||||
settings.EncoderModeIndex = level;
|
||||
settings.SetEncoderModeIndex(level);
|
||||
}
|
||||
else if ((args[arg][0] != '-' || args[arg] == "-") && input_file == null)
|
||||
input_file = args[arg];
|
||||
|
||||
Reference in New Issue
Block a user