mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Refactoring codecs infrastructure:
AudioWriterSettings passed to IAdioDest constructors now AudioWriterSettings now includes AudioPCMConfig
This commit is contained in:
@@ -38,7 +38,7 @@ namespace CUETools.TestCodecs
|
||||
AudioBuffer buff = WAVReader.ReadAllSamples("test.wav", null);
|
||||
FLACWriter target;
|
||||
|
||||
target = new FLACWriter("flacwriter2.flac", buff.PCM);
|
||||
target = new FLACWriter("flacwriter2.flac", new FLACWriterSettings() { PCM = buff.PCM });
|
||||
target.Settings.Padding = 1;
|
||||
target.Settings.BlockSize = 32;
|
||||
//target.Vendor = "CUETools";
|
||||
|
||||
Reference in New Issue
Block a user