HVScrollView
HVScrollView copied to clipboard
请问下第一个示例中,支持局部刷新的话应该如何控制呢?
Good catch
Should be a simple fix:
if (format == AudioFileFormat::Wave)
{
return audioFile.save ("audio-write-tests/" + numChannelsAsString + "_" + sampleRateAsString + "_" + bitDepthAsString + "bit" + ".wav", format);
}
else if (format == AudioFileFormat::Aiff)
{
return audioFile.save ("audio-write-tests/" + numChannelsAsString + "_" + sampleRateAsString + "_" + bitDepthAsString + "bit" + ".aif", format);
}
Hi guys,
Thank you for your thoughts and your time. I have fixed this in a commit just now to the develop branch:
https://github.com/adamstark/AudioFile/commit/83797d3750741ee16813df4189e70dbe5f7d2f25
Thanks,
Adam