summaryrefslogtreecommitdiff
path: root/libs/rubberband
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-06-25 15:52:07 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-06-25 15:52:07 +0000
commit3b986aa392b8b38bf620d1fed955e5ae9596638f (patch)
tree31f835c29b905cf3b0acb6d0305c96127050b778 /libs/rubberband
parent743779ce0125222752ca59a89dece15a756567a5 (diff)
3 spelling mistake fixes from debian
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12926 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/rubberband')
-rw-r--r--libs/rubberband/src/FFT.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/rubberband/src/FFT.cpp b/libs/rubberband/src/FFT.cpp
index 98201350a2..a2e50ec33f 100644
--- a/libs/rubberband/src/FFT.cpp
+++ b/libs/rubberband/src/FFT.cpp
@@ -1199,7 +1199,7 @@ FFT::FFT(int size, int debugLevel)
switch (m_method) {
case 0:
- std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl;
+ std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size);
#else
@@ -1216,7 +1216,7 @@ FFT::FFT(int size, int debugLevel)
}
d = new FFTs::D_FFTW(size);
#else
- std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl;
+ std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size);
#else
@@ -1234,7 +1234,7 @@ FFT::FFT(int size, int debugLevel)
}
d = new FFTs::D_KISSFFT(size);
#else
- std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl;
+ std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size);
#else