Martin Pavelek c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
..
Analyzer.cpp c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
Analyzer.h c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
CMakeLists.txt c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
README.md c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaControls.cpp c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaControls.h c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaControlsDialog.cpp c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaControlsDialog.h c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaProcessor.cpp c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaProcessor.h c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaSpectrumView.cpp c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaSpectrumView.h c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaWaterfallView.cpp c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
SaWaterfallView.h c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
block_size.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
freeze.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
freeze_off.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
logo.png cfb1465c05 Update effect plugin icons (#2938) hace 8 años
pause.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
play.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
window.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
x_linear.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
x_log.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
y_linear.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años
y_log.svg c3b4d5188a New Spectrum Analyzer (#4950) hace 5 años

README.md

Spectrum Analyzer plugin

Overview

This plugin consists of three widgets and back-end code to provide them with required data.

The top-level widget is SaControlDialog. It populates a configuration widget (created dynamically) and instantiates spectrum display widgets. Its main back-end class is SaControls, which holds all configuration values and globally valid constants (e.g. range definitions).

SaSpectrumDisplay and SaWaterfallDisplay show the result of spectrum analysis. Their main back-end class is SaProcessor, which performs FFT analysis on data received from the Analyzer class, which in turn handles the interface with LMMS.

Changelog

1.0.1   2019-06-02
    - code style changes
    - added tool-tips
    - use const for unmodified arrays passed to fft_helpers
1.0.0   2019-04-07
    - initial release