summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/plugin_insert.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-12-03 22:26:29 +0000
committerCarl Hetherington <carl@carlh.net>2010-12-03 22:26:29 +0000
commit73192bc1a7ea55fa1864dc3826845b15c00dd2ec (patch)
treec0039f3f5a848aed6e880abf11519dad855fa899 /libs/ardour/ardour/plugin_insert.h
parent74b4a3c77b08dc1e58274875604eb73e8492fa93 (diff)
Remove all use of nframes_t.
git-svn-id: svn://localhost/ardour2/branches/3.0@8166 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/plugin_insert.h')
-rw-r--r--libs/ardour/ardour/plugin_insert.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libs/ardour/ardour/plugin_insert.h b/libs/ardour/ardour/plugin_insert.h
index 9b65ba41f5..e4a42d8165 100644
--- a/libs/ardour/ardour/plugin_insert.h
+++ b/libs/ardour/ardour/plugin_insert.h
@@ -52,14 +52,14 @@ class PluginInsert : public Processor
XMLNode& get_state(void);
int set_state(const XMLNode&, int version);
- void run (BufferSet& in, framepos_t start_frame, framepos_t end_frame, nframes_t nframes, bool);
- void silence (nframes_t nframes);
+ void run (BufferSet& in, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
+ void silence (framecnt_t nframes);
void activate ();
void deactivate ();
void flush ();
- int set_block_size (nframes_t nframes);
+ int set_block_size (pframes_t nframes);
ChanCount output_streams() const;
ChanCount input_streams() const;
@@ -101,11 +101,11 @@ class PluginInsert : public Processor
std::string describe_parameter (Evoral::Parameter param);
- nframes_t signal_latency() const;
+ framecnt_t signal_latency () const;
boost::shared_ptr<Plugin> get_impulse_analysis_plugin();
- void collect_signal_for_analysis(nframes_t nframes);
+ void collect_signal_for_analysis (framecnt_t nframes);
PBD::Signal2<void,BufferSet*, BufferSet*> AnalysisDataGathered;
@@ -125,14 +125,14 @@ class PluginInsert : public Processor
boost::weak_ptr<Plugin> _impulseAnalysisPlugin;
- nframes_t _signal_analysis_collected_nframes;
- nframes_t _signal_analysis_collect_nframes_max;
+ framecnt_t _signal_analysis_collected_nframes;
+ framecnt_t _signal_analysis_collect_nframes_max;
BufferSet _signal_analysis_inputs;
BufferSet _signal_analysis_outputs;
- void automation_run (BufferSet& bufs, nframes_t nframes);
- void connect_and_run (BufferSet& bufs, nframes_t nframes, nframes_t offset, bool with_auto, nframes_t now = 0);
+ void automation_run (BufferSet& bufs, pframes_t nframes);
+ void connect_and_run (BufferSet& bufs, pframes_t nframes, framecnt_t offset, bool with_auto, framepos_t now = 0);
void set_automatable ();
void control_list_automation_state_changed (Evoral::Parameter, AutoState);