Mercurial > hg > svgui
diff layer/SpectrogramLayer.h @ 985:8053c0dfa919 simple-fft-model
Fill extent is not relevant in simple-fft-model code, as it's always the full extent
author | Chris Cannam |
---|---|
date | Wed, 01 Jul 2015 11:32:18 +0100 |
parents | 28d05ae8741c |
children | 4f4f0e158ecf |
line wrap: on
line diff
--- a/layer/SpectrogramLayer.h Fri Jun 12 14:51:46 2015 +0100 +++ b/layer/SpectrogramLayer.h Wed Jul 01 11:32:18 2015 +0100 @@ -247,8 +247,6 @@ void preferenceChanged(PropertyContainer::PropertyName name); - void fillTimerTimedOut(); - protected: const DenseTimeValueModel *m_model; // I do not own this @@ -326,9 +324,6 @@ */ mutable QImage m_drawBuffer; - mutable QTimer *m_updateTimer; - - mutable sv_frame_t m_candidateFillStartFrame; bool m_exiting; void initialisePalette(); @@ -373,8 +368,7 @@ Dense3DModelPeakCache *getPeakCache(const View *v) const; void invalidateFFTModels(); - typedef std::pair<FFTModel *, sv_frame_t> FFTFillPair; // model, last fill - typedef std::map<const View *, FFTFillPair> ViewFFTMap; + typedef std::map<const View *, FFTModel *> ViewFFTMap; typedef std::map<const View *, Dense3DModelPeakCache *> PeakCacheMap; mutable ViewFFTMap m_fftModels; mutable PeakCacheMap m_peakCaches;