summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/vst_plugin.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-12-04 03:07:14 +0000
committerCarl Hetherington <carl@carlh.net>2010-12-04 03:07:14 +0000
commit9a541c30b95a392df1160a955a3595e60c2b440c (patch)
tree636368f7a730cb34f04c5f2f18ff372b5cb59a44 /libs/ardour/ardour/vst_plugin.h
parent38c24cefbad1822f08fe4c417286ecf1ff7a8867 (diff)
Missing nframes_t fixes in VST build.
git-svn-id: svn://localhost/ardour2/branches/3.0@8177 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/vst_plugin.h')
-rw-r--r--libs/ardour/ardour/vst_plugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/vst_plugin.h b/libs/ardour/ardour/vst_plugin.h
index a06c3667f5..f78f3e687c 100644
--- a/libs/ardour/ardour/vst_plugin.h
+++ b/libs/ardour/ardour/vst_plugin.h
@@ -56,7 +56,7 @@ class VSTPlugin : public ARDOUR::Plugin
const char * maker() const;
uint32_t parameter_count() const;
float default_value (uint32_t port);
- nframes_t signal_latency() const;
+ framecnt_t signal_latency() const;
void set_parameter (uint32_t port, float val);
float get_parameter (uint32_t port) const;
int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const;
@@ -64,11 +64,11 @@ class VSTPlugin : public ARDOUR::Plugin
uint32_t nth_parameter (uint32_t port, bool& ok) const;
void activate ();
void deactivate ();
- int set_block_size (nframes_t nframes);
+ int set_block_size (pframes_t);
int connect_and_run (BufferSet&,
ChanMapping in, ChanMapping out,
- nframes_t nframes, nframes_t offset);
+ pframes_t nframes, framecnt_t offset);
std::string describe_parameter (Evoral::Parameter);
std::string state_node_name() const { return "vst"; }