summaryrefslogtreecommitdiffstats
path: root/demos/spectrum/app
Commit message (Collapse)AuthorAgeFilesLines
* Demo Spectrum wav data size is not calculated correctlyJustin McPherson2010-10-132-79/+90
| | | | | | | | - Grab length of audio data from Data chunk size - Read from the device no greater than the audio Data chunk size Task-number: QTBUG-13779 Reviewed-by: Andrew den Exter
* Spectrum demo: fixed installationGareth Stockwell2010-07-061-3/+2
| | | | | | | | | All binaries must be written into $$QT_BUILD_DIR/demos/spectrum in order for them to be correctly installed. Task-number: QTBUG-11572 Task-number: QTBUG-11756 Reviewed-by: Andy Shaw
* Spectrum build: fixed DLL rpathGareth Stockwell2010-07-062-60/+3
| | | | | | | | | | Rather than explicitly modifying LD_LIBRARY_PATH using a shell script when the application is launched, the relative path from the application binary to the FFT library is encoded in the application using an --rpath flag. Task-number: QTBUG-11756 Reviewed-by: Andy Shaw
* Updated UIDs for spectrum demoGareth Stockwell2010-06-231-1/+1
| | | | | | Resolving UID clash with other example apps Reviewed-by: Miikka Heikkinen
* Add missing license header.Jason McDonald2010-05-281-0/+41
| | | | Reviewed-by: Trust Me
* Removed unnecessary PlatSec capabilities from spectrum demo DLLGareth Stockwell2010-05-261-1/+1
| | | | | Task-number: QTBUG-10964 Reviewed-by: Miikka Heikkinen
* Build fix for spectrum demo when -qtnamespace is usedGareth Stockwell2010-05-259-24/+27
| | | | | Task-number: QTBUG-10881 Reviewed-by: Liang Qi
* Fixed license headers in spectrum demoGareth Stockwell2010-05-2528-688/+716
| | | | | Reviewed-by: Jason McDonald Task-number: QTBUG-10887
* Install source for spectrum demoGareth Stockwell2010-05-211-0/+7
| | | | | Task-number: QTBUG-10880 Reviewed-by: Thomas Zander
* Fixed path for copying launcher script for spectrum demoGareth Stockwell2010-05-211-1/+1
| | | | | Task-number: QTBUG-10879 Reviewed-by: Thomas Zander
* Compilation fix for Metrowerks compilerGareth Stockwell2010-05-121-1/+1
| | | | | | | | Compiler was failing to disambiguate the following overloads: pow(double, double) pow(float, float) Reviewed-by: mread
* Corrected headers for spectrum analyzer demoGareth Stockwell2010-05-0616-12/+42
| | | | | | | | - Added /3rdparty/ to directory path for FFTReal code - Added missing $QT_BEGIN_LICENSE$, $QT_END_LICENSE$ - Fixed incorrect license in app/wavfile.cpp Reviewed-by: trustme
* Add spectrum analyzer demo appGareth Stockwell2010-05-0533-0/+5218
This application is a demo which uses the QtMultimedia APIs to capture and play back PCM audio. While either recording or playback is ongoing, the application performs real-time level and frequency spectrum analysis. Reviewed-by: Alessandro Portale