Mercurial > hg > svapp
annotate audioio/audioio.pro @ 113:0c1ea5ff6518
* Speed up spectrogram painting by releasing mutex in FFTDataServer
while calculating data prior to writing it, and by adding whole-column
value query methods to FFT objects
* Add paint cache to Thumbwheel -- repaints of this widget were slowing
down the whole spectrogram repaint
* More uses of MutexLocker (named and with debug) and more profile
points
* Make startup much quicker some of the time, with OSC server in place
author | Chris Cannam |
---|---|
date | Thu, 08 May 2008 14:46:22 +0000 |
parents | 907e44e4ecf0 |
children | ccdc5b30e54c |
rev | line source |
---|---|
Chris@44 | 1 TEMPLATE = lib |
Chris@44 | 2 |
Chris@66 | 3 SV_UNIT_PACKAGES = fftw3f samplerate jack portaudio rubberband |
Chris@44 | 4 load(../sv.prf) |
Chris@44 | 5 |
Chris@44 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@105 | 7 QT -= gui |
Chris@44 | 8 |
Chris@44 | 9 TARGET = svaudioio |
Chris@44 | 10 |
Chris@44 | 11 DEPENDPATH += .. |
Chris@44 | 12 INCLUDEPATH += . .. |
Chris@44 | 13 OBJECTS_DIR = tmp_obj |
Chris@44 | 14 MOC_DIR = tmp_moc |
Chris@44 | 15 |
Chris@44 | 16 HEADERS += AudioCallbackPlaySource.h \ |
Chris@44 | 17 AudioCallbackPlayTarget.h \ |
Chris@44 | 18 AudioCoreAudioTarget.h \ |
Chris@44 | 19 AudioGenerator.h \ |
Chris@44 | 20 AudioJACKTarget.h \ |
Chris@44 | 21 AudioPortAudioTarget.h \ |
Chris@44 | 22 AudioTargetFactory.h \ |
Chris@44 | 23 PlaySpeedRangeMapper.h |
Chris@44 | 24 SOURCES += AudioCallbackPlaySource.cpp \ |
Chris@44 | 25 AudioCallbackPlayTarget.cpp \ |
Chris@44 | 26 AudioCoreAudioTarget.cpp \ |
Chris@44 | 27 AudioGenerator.cpp \ |
Chris@44 | 28 AudioJACKTarget.cpp \ |
Chris@44 | 29 AudioPortAudioTarget.cpp \ |
Chris@44 | 30 AudioTargetFactory.cpp \ |
Chris@44 | 31 PlaySpeedRangeMapper.cpp |