Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
d263bbf
New spectrum analyzer work in progress / init
he29-net Mar 4, 2019
47fba16
Implement resizability and X axis linear/log scale
he29-net Mar 8, 2019
c0563e2
Rework Y axis drawing and add linear scale; various cleanup
he29-net Mar 9, 2019
3e13296
Implement waterfall graph basics; variety of other stuff
he29-net Mar 10, 2019
c71692f
Fix that silly stereo rendering bug; minor waterfall cleanup
he29-net Mar 10, 2019
95e5713
WIP commit before branch switch
he29-net Mar 14, 2019
dcfa7bc
window precomputing update
he29-net Mar 14, 2019
b2ca051
Fix bug with disappearing curves; implement averaging; ref. freeze WIP
he29-net Mar 14, 2019
bbaee49
WIP on FFT block size switching (currently broken)
he29-net Mar 17, 2019
280bd8f
Finished block size and window type switching; many small fixes
he29-net Mar 21, 2019
b80b214
Log scale for waterfall
he29-net Mar 23, 2019
f9f4ef7
WIP on range switching
he29-net Mar 24, 2019
feed0fb
Implemented cursor display and readings for spectrum view
he29-net Mar 24, 2019
66bea0e
Many small improvements, mainly range switching
he29-net Mar 29, 2019
b1b9146
paintEvent rewrite and optimization, peak hold implementation
he29-net Mar 30, 2019
6d1a244
Config GUI overhaul
he29-net Mar 31, 2019
44f1240
Big cleanup in progress
he29-net Mar 31, 2019
d48349b
Continued cleanup; finished waterfall hiding, added zero padding
he29-net Apr 7, 2019
1700b80
Fine-tuning and cleanup done, ready for rebase
he29-net Apr 14, 2019
1decd33
Cleanup of fft_helpers
he29-net Apr 16, 2019
29d89df
Replace std::mutex with QMutex; some additional fine-tuning
he29-net Apr 17, 2019
d6fd391
Fix EffectView mistake; boost gamma curve slightly to make low values…
he29-net May 6, 2019
c7db22a
Update src/core/fft_helpers.cpp
he29-net Jun 1, 2019
134619e
Update src/core/fft_helpers.cpp
he29-net Jun 1, 2019
8ef716a
fft_helpers.h indentation fix
he29-net Jun 1, 2019
5e07a28
fft_helpers: Add @return tags to function commets; mark pointer and r…
he29-net Jun 1, 2019
ba85822
Move opening brackets to separate line
he29-net Jun 1, 2019
9e40dc4
Fix Doxygen syntax in fft_helpers
he29-net Jun 1, 2019
2b59149
Fix of the previous 'Doxygen fix' fix
he29-net Jun 2, 2019
0058626
Add tool-tips
he29-net Jun 2, 2019
b03d48d
Update plugins/SpectrumAnalyzer/SaProcessor.h
he29-net Jun 14, 2019
5f18863
Update plugins/SpectrumAnalyzer/Analyzer.h
he29-net Jun 14, 2019
cec0768
Update plugins/SpectrumAnalyzer/SaProcessor.cpp
he29-net Jun 14, 2019
b9d3e0d
Update plugins/SpectrumAnalyzer/SaControlsDialog.cpp
he29-net Jun 14, 2019
70b964c
Update plugins/SpectrumAnalyzer/SaControlsDialog.h
he29-net Jun 14, 2019
def85bc
Update plugins/SpectrumAnalyzer/SaSpectrumView.h
he29-net Jun 14, 2019
57a5b6e
Remove EffectControlDialog pointer from SaControls, add a replacement…
he29-net Jun 14, 2019
8c5c35a
Use markdown syntax for readme file
he29-net Jun 14, 2019
4431e6e
Fix the markdown syntax I just added xD
he29-net Jun 14, 2019
86f01ff
... and change changelog formatting, since apparently tabs here are 8…
he29-net Jun 14, 2019
d0a7f70
Arrgh! And fix a typo in the title >_<
he29-net Jun 14, 2019
78d328e
Avoid waterfall history updates when there is no input
he29-net Jun 15, 2019
be824e1
Display black rectangle instead waterfall when no data are available
he29-net Jun 15, 2019
0e6aa9e
Add 'override's to overriding methods; mark additional constructors a…
he29-net Jun 15, 2019
aa41b84
Remove iostream include from SaWaterfall
he29-net Jun 16, 2019
1556187
Update plugins/SpectrumAnalyzer/SaProcessor.cpp
he29-net Jun 23, 2019
ec9615c
Update plugins/SpectrumAnalyzer/SaProcessor.cpp
he29-net Jun 23, 2019
ff13ca3
Update plugins/SpectrumAnalyzer/SaProcessor.cpp
he29-net Jun 23, 2019
217f629
Update plugins/SpectrumAnalyzer/SaProcessor.cpp
he29-net Jun 23, 2019
b359881
First batch of changes for second review round
he29-net Jun 23, 2019
f4510ec
Make some -Weverything warnings go away (mainly implicit signed vs. u…
he29-net Jun 26, 2019
c8a105c
Cleanup includes, update comments in SaProcessor
he29-net Jun 26, 2019
89d4703
Batch of changes for the third review
he29-net Jul 11, 2019
14e9008
Restrict cursor drawing to graph ranges
JohannesLorenz Jul 14, 2019
1409f1f
Spectrum View: Use existing cursor boundaries
JohannesLorenz Jul 16, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove iostream include from SaWaterfall
  • Loading branch information
he29-net committed Jun 16, 2019
commit aa41b842e243ab7e9229da9a82a51e9868f9a83c
1 change: 0 additions & 1 deletion plugins/SpectrumAnalyzer/SaWaterfallView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
#include "MainWindow.h"
#include "SaProcessor.h"

#include <iostream>

SaWaterfallView::SaWaterfallView(SaControls *controls, SaProcessor *processor, QWidget *_parent) :
QWidget(_parent),
Expand Down