changeset 497:d1c70c680fa9 tony-2.0-integration

Adjust model update during recording or writing a new wave file. Formerly we were using the model's completion percentage to indicate write proportion and completion -- that's not a good idea because some layers will reasonably avoid rendering at all until a model reaches 100% completion (it's supposed to report only progress on the initial model generation, and the model shouldn't change during completion updates).
author Chris Cannam
date Tue, 13 Oct 2015 14:26:40 +0100
parents 4f1d280903ad
children c82cae9a9e74 bfe468c89d30
files audio/AudioRecordTarget.cpp audio/AudioRecordTarget.h
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/audio/AudioRecordTarget.cpp	Mon Oct 12 17:10:43 2015 +0100
+++ b/audio/AudioRecordTarget.cpp	Tue Oct 13 14:26:40 2015 +0100
@@ -164,12 +164,13 @@
         return;
     }
 
-    m_model->setCompletion(100);
+    m_model->writeComplete();
     m_model = 0;
     m_recording = false;
     }
 
     emit recordStatusChanged(false);
+    emit recordCompleted();
 }
 
 
--- a/audio/AudioRecordTarget.h	Mon Oct 12 17:10:43 2015 +0100
+++ b/audio/AudioRecordTarget.h	Tue Oct 13 14:26:40 2015 +0100
@@ -60,6 +60,7 @@
 signals:
     void recordStatusChanged(bool recording);
     void recordDurationChanged(sv_frame_t, sv_samplerate_t); // emitted occasionally
+    void recordCompleted();
 
 protected slots:
     void modelAboutToBeDeleted();