summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-10-26 15:17:42 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-02-22 15:31:24 -0500
commit6991a07902cc844b87c895aa56de613c96b88b4f (patch)
treea19dabdab9fc1c106cda3d4594a0135bb1a18013 /libs
parentbc487bb4b02a9780938d6cf8528c888e59161aa9 (diff)
remove all trace of SAE from source code.
This had become incoherent over time, and posed a development hazard and burden going forward
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/ardour/profile.h4
-rw-r--r--libs/ardour/region.cc22
2 files changed, 0 insertions, 26 deletions
diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h
index 1ea7e2b036..cc3ae4f60f 100644
--- a/libs/ardour/ardour/profile.h
+++ b/libs/ardour/ardour/profile.h
@@ -31,7 +31,6 @@ class LIBARDOUR_API RuntimeProfile {
public:
enum Element {
SmallScreen,
- SAE,
SinglePackage,
Trx,
Mixbus,
@@ -44,9 +43,6 @@ public:
void set_small_screen() { bits[SmallScreen] = true; }
bool get_small_screen() const { return bits[SmallScreen]; }
- void set_sae () { bits[SAE] = true; }
- bool get_sae () const { return bits[SAE]; }
-
bool get_trx() const { return bits[Trx]; }
void set_trx() { bits[Trx] = true; }
diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc
index bd99403cb7..5ff06e5076 100644
--- a/libs/ardour/region.cc
+++ b/libs/ardour/region.cc
@@ -301,17 +301,6 @@ Region::Region (boost::shared_ptr<const Region> other)
_sync_position = _start;
}
- if (Profile->get_sae()) {
- /* reset sync point to start if its ended up
- outside region bounds.
- */
-
- if (_sync_position < _start || _sync_position >= _start + _length) {
- _sync_marked = false;
- _sync_position = _start;
- }
- }
-
assert (_type == other->data_type());
}
@@ -360,17 +349,6 @@ Region::Region (boost::shared_ptr<const Region> other, frameoffset_t offset)
_sync_position = _start;
}
- if (Profile->get_sae()) {
- /* reset sync point to start if its ended up
- outside region bounds.
- */
-
- if (_sync_position < _start || _sync_position >= _start + _length) {
- _sync_marked = false;
- _sync_position = _start;
- }
- }
-
assert (_type == other->data_type());
}