Mercurial > hg > sonic-visualiser
comparison main/MainWindow.cpp @ 266:52ef51ba9a74
* Reduce time stretcher to one channel when overload occurs
author | Chris Cannam |
---|---|
date | Mon, 07 Jul 2008 16:49:53 +0000 |
parents | d55e4c0f7d9e |
children | c452d8a7b770 |
comparison
equal
deleted
inserted
replaced
265:d55e4c0f7d9e | 266:52ef51ba9a74 |
---|---|
3260 MainWindow::audioOverloadPluginDisabled() | 3260 MainWindow::audioOverloadPluginDisabled() |
3261 { | 3261 { |
3262 QMessageBox::information | 3262 QMessageBox::information |
3263 (this, tr("Audio processing overload"), | 3263 (this, tr("Audio processing overload"), |
3264 tr("<b>Overloaded</b><p>Audio effects plugin auditioning has been disabled due to a processing overload.")); | 3264 tr("<b>Overloaded</b><p>Audio effects plugin auditioning has been disabled due to a processing overload.")); |
3265 } | |
3266 | |
3267 void | |
3268 MainWindow::audioTimeStretchMultiChannelDisabled() | |
3269 { | |
3270 static bool shownOnce = false; | |
3271 if (shownOnce) return; | |
3272 QMessageBox::information | |
3273 (this, tr("Audio processing overload"), | |
3274 tr("<b>Overloaded</b><p>Audio playback speed processing has been reduced to a single channel, due to a processing overload.")); | |
3275 shownOnce = true; | |
3265 } | 3276 } |
3266 | 3277 |
3267 void | 3278 void |
3268 MainWindow::layerRemoved(Layer *layer) | 3279 MainWindow::layerRemoved(Layer *layer) |
3269 { | 3280 { |