summaryrefslogtreecommitdiff
path: root/libs/panners/vbap
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-10-18 15:08:42 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-10-18 15:08:42 +0000
commit4aeebb914eedf9279e4904786ce42518611de137 (patch)
treebd703e27352128971955ceae57d1762aeb9698bc /libs/panners/vbap
parent41dd8bd811f2fea4ecb048b8075e06f9222294ce (diff)
changes for OS X support: change waf config define to COREAUDIO_SUPPORT, remove PluginInsert call to IO::PortCountChanged, remove use of explicit Carbon linkage, fix up AudioUnit internals to actually work (Cocoa GUIs still currently broken)
git-svn-id: svn://localhost/ardour2/branches/3.0@10224 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/panners/vbap')
-rw-r--r--libs/panners/vbap/vbap_speakers.cc2
-rw-r--r--libs/panners/vbap/vbap_speakers.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/libs/panners/vbap/vbap_speakers.cc b/libs/panners/vbap/vbap_speakers.cc
index 29791936fb..b84698bbd9 100644
--- a/libs/panners/vbap/vbap_speakers.cc
+++ b/libs/panners/vbap/vbap_speakers.cc
@@ -43,6 +43,8 @@ using namespace ARDOUR;
using namespace PBD;
using namespace std;
+const double VBAPSpeakers::MIN_VOL_P_SIDE_LGTH = 0.01;
+
VBAPSpeakers::VBAPSpeakers (boost::shared_ptr<Speakers> s)
: _dimension (2)
, _parent (s)
diff --git a/libs/panners/vbap/vbap_speakers.h b/libs/panners/vbap/vbap_speakers.h
index 4c28fc6489..b2f8b3c9dd 100644
--- a/libs/panners/vbap/vbap_speakers.h
+++ b/libs/panners/vbap/vbap_speakers.h
@@ -50,7 +50,7 @@ public:
~VBAPSpeakers ();
private:
- static const double MIN_VOL_P_SIDE_LGTH = 0.01;
+ static const double MIN_VOL_P_SIDE_LGTH;
int _dimension;
boost::shared_ptr<Speakers> _parent;
std::vector<Speaker> _speakers;