summaryrefslogtreecommitdiff
path: root/libs/rubberband
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-06-26 01:40:27 +0000
committerCarl Hetherington <carl@carlh.net>2012-06-26 01:40:27 +0000
commita5d013d841870ecf9dfe18e0071ed560a88cc6b8 (patch)
tree750b35ce971b74948a178c97ab46c054b01545c5 /libs/rubberband
parent9dc781114779009c4b3d962a28a721d2569eec74 (diff)
Some spelling mistake fixes from Debian.
git-svn-id: svn://localhost/ardour2/branches/3.0@12936 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 077c2c57a4..f04f6506d6 100644
--- a/libs/rubberband/src/FFT.cpp
+++ b/libs/rubberband/src/FFT.cpp
@@ -1201,7 +1201,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
@@ -1218,7 +1218,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
@@ -1236,7 +1236,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