summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/stretch.h12
-rw-r--r--libs/ardour/rb_effect.cc2
-rw-r--r--libs/ardour/st_stretch.cc6
3 files changed, 10 insertions, 10 deletions
diff --git a/libs/ardour/ardour/stretch.h b/libs/ardour/ardour/stretch.h
index d0c05ac6d1..0b0de1be57 100644
--- a/libs/ardour/ardour/stretch.h
+++ b/libs/ardour/ardour/stretch.h
@@ -28,10 +28,10 @@
namespace ARDOUR {
-class Stretch : public RBEffect {
+class RBStretch : public RBEffect {
public:
- Stretch (ARDOUR::Session&, TimeFXRequest&);
- ~Stretch() {}
+ RBStretch (ARDOUR::Session&, TimeFXRequest&);
+ ~RBStretch() {}
};
} /* namespace */
@@ -42,10 +42,10 @@ class Stretch : public RBEffect {
namespace ARDOUR {
-class Stretch : public Filter {
+class STStretch : public Filter {
public:
- Stretch (ARDOUR::Session&, TimeFXRequest&);
- ~Stretch ();
+ STStretch (ARDOUR::Session&, TimeFXRequest&);
+ ~STStretch ();
int run (boost::shared_ptr<ARDOUR::Region>);
diff --git a/libs/ardour/rb_effect.cc b/libs/ardour/rb_effect.cc
index 3cda2eb706..b61170da09 100644
--- a/libs/ardour/rb_effect.cc
+++ b/libs/ardour/rb_effect.cc
@@ -42,7 +42,7 @@ Pitch::Pitch (Session& s, TimeFXRequest& req)
{
}
-Stretch::Stretch (Session& s, TimeFXRequest& req)
+RBStretch::RBStretch (Session& s, TimeFXRequest& req)
: RBEffect (s, req)
{
}
diff --git a/libs/ardour/st_stretch.cc b/libs/ardour/st_stretch.cc
index ff46303eee..5adf8ad6d1 100644
--- a/libs/ardour/st_stretch.cc
+++ b/libs/ardour/st_stretch.cc
@@ -35,7 +35,7 @@ using namespace ARDOUR;
using namespace PBD;
using namespace soundtouch;
-Stretch::Stretch (Session& s, TimeFXRequest& req)
+STStretch::STStretch (Session& s, TimeFXRequest& req)
: Filter (s)
, tsr (req)
{
@@ -59,12 +59,12 @@ Stretch::Stretch (Session& s, TimeFXRequest& req)
tsr.progress = 0.0f;
}
-Stretch::~Stretch ()
+STStretch::~STStretch ()
{
}
int
-Stretch::run (boost::shared_ptr<Region> a_region)
+STStretch::run (boost::shared_ptr<Region> a_region)
{
SourceList nsrcs;
nframes_t total_frames;