Martin Pavelek 13e55101f0 Improve spectrum analyzer performance by caching most used computations (#6003) 2 anos atrás
..
Analyzer.cpp f742710758 Macro cleanup (#6095) 3 anos atrás
Analyzer.h da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
CMakeLists.txt da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
DataprocLauncher.h da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
README.md da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
SaControls.cpp da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
SaControls.h 89d8363218 Add the vectorscope plugin (#5328) 4 anos atrás
SaControlsDialog.cpp 9ed41c4927 Fix for Icons and comboboxes mismatch in arpeggiator in Instrument Editor #5494 (#5623) 4 anos atrás
SaControlsDialog.h c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
SaProcessor.cpp 13e55101f0 Improve spectrum analyzer performance by caching most used computations (#6003) 2 anos atrás
SaProcessor.h da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
SaSpectrumView.cpp 13e55101f0 Improve spectrum analyzer performance by caching most used computations (#6003) 2 anos atrás
SaSpectrumView.h 13e55101f0 Improve spectrum analyzer performance by caching most used computations (#6003) 2 anos atrás
SaWaterfallView.cpp f742710758 Macro cleanup (#6095) 3 anos atrás
SaWaterfallView.h da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
advanced_off.svg da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
advanced_on.svg da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
advanced_src.svg da73ddd242 Spectrum analyzer update (#5160) 5 anos atrás
block_size.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
freeze.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
freeze_off.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
logo.png cfb1465c05 Update effect plugin icons (#2938) 8 anos atrás
pause.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
play.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
window.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
x_linear.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
x_log.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
y_linear.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás
y_log.svg c3b4d5188a New Spectrum Analyzer (#4950) 5 anos atrás

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 configuration widgets (created dynamically) and instantiates spectrum display widgets. Its main back-end class is SaControls, which holds all configuration values.

SaSpectrumView and SaWaterfallView widgets 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.

Threads

The Spectrum Analyzer is involved in three different threads:

  • Effect mixer thread: periodically calls Analyzer::processAudioBuffer() to provide the plugin with more data. This thread is real-time sensitive -- any latency spikes can potentially cause interruptions in the audio stream. For this reason, Analyzer::processAudioBuffer() must finish as fast as possible and must not call any functions that could cause it to be delayed for unpredictable amount of time. A lock-less ring buffer is used to safely feed data to the FFT analysis thread without risking any latency spikes due to a shared mutex being unavailable at the time of writing.
  • FFT analysis thread: a standalone thread formed by the SaProcessor::analyze() function. Takes in data from the ring buffer, performs FFT analysis and prepares results for display. This thread is not real-time sensitive but excessive locking is discouraged to maintain good performance.
  • GUI thread: periodically triggers paintEvent() of all Qt widgets, including SaSpectrumView and SaWaterfallView. While it is not as sensitive to latency spikes as the effect mixer thread, the paintEvent()s appear to be called sequentially and the execution time of each widget therefore adds to the total time needed to complete one full refresh cycle. This means the maximum frame rate of the Qt GUI will be limited to 1 / total_execution_time. Good performance of the paintEvent() functions should be therefore kept in mind.

Changelog

1.1.2   2019-11-18
    - waterfall is no longer cut short when width limit is reached
    - various small tweaks based on final review
1.1.1   2019-10-13
    - improved interface for accessing SaProcessor private data
    - readme file update
    - other small improvements based on reviews
1.1.0   2019-08-29
    - advanced config: expose hidden constants to user
    - advanced config: add support for FFT window overlapping
    - waterfall: display at native resolution on high-DPI screens
    - waterfall: add cursor and improve label density
    - FFT: fix normalization so that 0 dBFS matches full-scale sinewave
    - FFT: decouple data acquisition from processing and display
    - FFT: separate lock for reallocation (to avoid some needless waiting)
    - moved ranges and other constants to a separate file
    - debug: better performance measurements
    - various performance optimizations
1.0.3   2019-07-25
    - rename and tweak amplitude ranges based on feedback
1.0.2   2019-07-12
    - variety of small changes based on code review
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