Mercurial > hg > svcore
annotate base/base.pro @ 297:c022976d18e8
* Merge from sv-match-alignment branch (excluding alignment-specific document).
- add aggregate wave model (not yet complete enough to be added as a true
model in a layer, but there's potential)
- add play solo mode
- add alignment model -- unused in plain SV
- fix two plugin leaks
- add m3u playlist support (opens all files at once, potentially hazardous)
- fix retrieval of pre-encoded URLs
- add ability to resample audio files on import, so as to match rates with
other files previously loaded; add preference for same
- add preliminary support in transform code for range and rate of transform
input
- reorganise preferences dialog, move dark-background option to preferences,
add option for temporary directory location
author | Chris Cannam |
---|---|
date | Fri, 28 Sep 2007 13:56:38 +0000 |
parents | 20097c32d15d |
children | 7aa1de571880 |
rev | line source |
---|---|
Chris@150 | 1 TEMPLATE = lib |
Chris@150 | 2 |
Chris@150 | 3 SV_UNIT_PACKAGES = |
Chris@150 | 4 load(../sv.prf) |
Chris@150 | 5 |
Chris@150 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@150 | 7 |
Chris@150 | 8 TARGET = svbase |
Chris@150 | 9 |
Chris@150 | 10 DEPENDPATH += . |
Chris@150 | 11 INCLUDEPATH += . .. |
Chris@150 | 12 OBJECTS_DIR = tmp_obj |
Chris@150 | 13 MOC_DIR = tmp_moc |
Chris@150 | 14 |
Chris@150 | 15 # Input |
Chris@150 | 16 HEADERS += AudioLevel.h \ |
Chris@150 | 17 AudioPlaySource.h \ |
Chris@150 | 18 Clipboard.h \ |
Chris@277 | 19 ColourDatabase.h \ |
Chris@277 | 20 ColourMapper.h \ |
Chris@150 | 21 Command.h \ |
Chris@150 | 22 CommandHistory.h \ |
Chris@150 | 23 Exceptions.h \ |
Chris@224 | 24 LogRange.h \ |
Chris@150 | 25 Pitch.h \ |
Chris@150 | 26 PlayParameterRepository.h \ |
Chris@150 | 27 PlayParameters.h \ |
Chris@150 | 28 Preferences.h \ |
Chris@150 | 29 Profiler.h \ |
Chris@150 | 30 PropertyContainer.h \ |
Chris@189 | 31 RangeMapper.h \ |
Chris@150 | 32 RealTime.h \ |
Chris@150 | 33 RecentFiles.h \ |
Chris@297 | 34 Resampler.h \ |
Chris@150 | 35 ResizeableBitset.h \ |
Chris@150 | 36 RingBuffer.h \ |
Chris@150 | 37 Scavenger.h \ |
Chris@150 | 38 Selection.h \ |
Chris@297 | 39 Serialiser.h \ |
Chris@168 | 40 StorageAdviser.h \ |
Chris@150 | 41 TempDirectory.h \ |
Chris@286 | 42 TextAbbrev.h \ |
Chris@150 | 43 Thread.h \ |
Chris@150 | 44 UnitDatabase.h \ |
Chris@150 | 45 Window.h \ |
Chris@150 | 46 XmlExportable.h \ |
Chris@150 | 47 ZoomConstraint.h |
Chris@150 | 48 SOURCES += AudioLevel.cpp \ |
Chris@150 | 49 Clipboard.cpp \ |
Chris@277 | 50 ColourDatabase.cpp \ |
Chris@277 | 51 ColourMapper.cpp \ |
Chris@150 | 52 Command.cpp \ |
Chris@150 | 53 CommandHistory.cpp \ |
Chris@150 | 54 Exceptions.cpp \ |
Chris@224 | 55 LogRange.cpp \ |
Chris@150 | 56 Pitch.cpp \ |
Chris@150 | 57 PlayParameterRepository.cpp \ |
Chris@150 | 58 PlayParameters.cpp \ |
Chris@150 | 59 Preferences.cpp \ |
Chris@150 | 60 Profiler.cpp \ |
Chris@150 | 61 PropertyContainer.cpp \ |
Chris@189 | 62 RangeMapper.cpp \ |
Chris@150 | 63 RealTime.cpp \ |
Chris@150 | 64 RecentFiles.cpp \ |
Chris@297 | 65 Resampler.cpp \ |
Chris@150 | 66 Selection.cpp \ |
Chris@297 | 67 Serialiser.cpp \ |
Chris@168 | 68 StorageAdviser.cpp \ |
Chris@150 | 69 TempDirectory.cpp \ |
Chris@286 | 70 TextAbbrev.cpp \ |
Chris@150 | 71 Thread.cpp \ |
Chris@150 | 72 UnitDatabase.cpp \ |
Chris@150 | 73 XmlExportable.cpp |