Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/soundtouch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2014-01-07 23:41:23 +0400
committeroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2014-01-07 23:41:23 +0400
commit52013e271f5ac1b171a8245df1077987b21773a7 (patch)
tree8935742a713d52c2a7b46efb10e15316af4e915a
parent33745500a1c22f784d4e7b92df8cd2be55769586 (diff)
Fixed GNU compilation
-rw-r--r--source/SoundStretch/main.cpp2
-rw-r--r--source/SoundTouch/AAFilter.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/SoundStretch/main.cpp b/source/SoundStretch/main.cpp
index daff86c..349576b 100644
--- a/source/SoundStretch/main.cpp
+++ b/source/SoundStretch/main.cpp
@@ -65,7 +65,7 @@ using namespace std;
static const char _helloText[] =
"\n"
- " SoundStretch v%s - Written by Olli Parviainen 2001 - 2012\n"
+ " SoundStretch v%s - Written by Olli Parviainen 2001 - 2014\n"
"==================================================================\n"
"author e-mail: <oparviai"
"@"
diff --git a/source/SoundTouch/AAFilter.h b/source/SoundTouch/AAFilter.h
index 8e4075b..9c8ad5d 100644
--- a/source/SoundTouch/AAFilter.h
+++ b/source/SoundTouch/AAFilter.h
@@ -90,8 +90,8 @@ public:
/// samples get removed from src, and produced amount added to dest
/// Note : The amount of outputted samples is by value of 'filter length'
/// smaller than the amount of input samples.
- uint AAFilter::evaluate(FIFOSampleBuffer &dest,
- FIFOSampleBuffer &src) const;
+ uint evaluate(FIFOSampleBuffer &dest,
+ FIFOSampleBuffer &src) const;
};