Mercurial > hg > sonic-visualiser
diff main/MainWindow.cpp @ 428:5f22e0bbe4ba
Use new write mode option for WavFileWriter
author | Chris Cannam |
---|---|
date | Wed, 11 May 2011 11:05:10 +0100 |
parents | aa8117d79702 |
children | db0c86c4e5e9 9de86c1b980e |
line wrap: on
line diff
--- a/main/MainWindow.cpp Thu Apr 14 12:13:06 2011 +0100 +++ b/main/MainWindow.cpp Wed May 11 11:05:10 2011 +0100 @@ -2306,7 +2306,8 @@ WavFileWriter subwriter(subpath, model->getSampleRate(), - model->getChannelCount()); + model->getChannelCount(), + WavFileWriter::WriteToTemporary); subwriter.writeModel(model, &subms); ok = subwriter.isOK(); @@ -2321,7 +2322,8 @@ if (!multiple) { WavFileWriter writer(path, model->getSampleRate(), - model->getChannelCount()); + model->getChannelCount(), + WavFileWriter::WriteToTemporary); writer.writeModel(model, selectionToWrite); ok = writer.isOK(); error = writer.getError();