summaryrefslogtreecommitdiff
path: root/gtk2_ardour/fft.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-03 17:58:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-03 17:58:11 +0000
commit80c46cc451fed4b50bd1e974b4586fcea99c1ab5 (patch)
tree804c1787bdca9b87a950b0d924abf284c67c6157 /gtk2_ardour/fft.cc
parent1ba667a0c176c6560bc8d61c8b11e66493920c70 (diff)
put sampo's FFT into the (new) GTKArdour namespace, to avoid collision with the FFT in the QM DSP library. they should both be namespaced but its easier to avoid changing the QM code at all
git-svn-id: svn://localhost/ardour2/branches/3.0@9056 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/fft.cc')
-rw-r--r--gtk2_ardour/fft.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/fft.cc b/gtk2_ardour/fft.cc
index d4841dd573..a4e34bf2aa 100644
--- a/gtk2_ardour/fft.cc
+++ b/gtk2_ardour/fft.cc
@@ -23,6 +23,8 @@
#include <string.h>
#include <math.h>
+using namespace GTKArdour;
+
FFT::FFT(uint32_t windowSize)
: _window_size(windowSize),
_data_size(_window_size/2),