mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
WavPackWriter: support multichannel audio, channelMask
This commit is contained in:
@@ -72,7 +72,7 @@ namespace TTA {
|
||||
if (WAVE_FORMAT_PCM != _ttaReader->ttahdr.AudioFormat)
|
||||
throw gcnew Exception("floating point format not supported.");
|
||||
|
||||
pcm = gcnew AudioPCMConfig((int)_ttaReader->ttahdr.BitsPerSample, (int)_ttaReader->ttahdr.NumChannels, (int)_ttaReader->ttahdr.SampleRate);
|
||||
pcm = gcnew AudioPCMConfig((int)_ttaReader->ttahdr.BitsPerSample, (int)_ttaReader->ttahdr.NumChannels, (int)_ttaReader->ttahdr.SampleRate, (AudioPCMConfig::SpeakerConfig)0);
|
||||
_sampleCount = _ttaReader->ttahdr.DataLength;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user