mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Refactoring: moved Padding and BlockSize from IAudioDest to AudioEncoderSettings;
This commit is contained in:
@@ -80,7 +80,7 @@ namespace CUETools.TestCodecs
|
||||
FlakeWriter target;
|
||||
|
||||
target = new FlakeWriter("flakewriter0.flac", null, buff.PCM);
|
||||
target.Padding = 1;
|
||||
target.Settings.Padding = 1;
|
||||
target.DoSeekTable = false;
|
||||
//target.Vendor = "CUETools";
|
||||
//target.CreationTime = DateTime.Parse("15 Aug 1976");
|
||||
@@ -90,7 +90,7 @@ namespace CUETools.TestCodecs
|
||||
CollectionAssert.AreEqual(File.ReadAllBytes("flake.flac"), File.ReadAllBytes("flakewriter0.flac"), "flakewriter0.flac doesn't match.");
|
||||
|
||||
target = new FlakeWriter("flakewriter1.flac", null, buff.PCM);
|
||||
target.Padding = 1;
|
||||
target.Settings.Padding = 1;
|
||||
target.DoSeekTable = false;
|
||||
//target.Vendor = "CUETools";
|
||||
//target.CreationTime = DateTime.Parse("15 Aug 1976");
|
||||
|
||||
Reference in New Issue
Block a user