From 73192bc1a7ea55fa1864dc3826845b15c00dd2ec Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 3 Dec 2010 22:26:29 +0000 Subject: Remove all use of nframes_t. git-svn-id: svn://localhost/ardour2/branches/3.0@8166 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/io.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libs/ardour/ardour/io.h') diff --git a/libs/ardour/ardour/io.h b/libs/ardour/ardour/io.h index 9d423f55a5..fd7cb563fd 100644 --- a/libs/ardour/ardour/io.h +++ b/libs/ardour/ardour/io.h @@ -89,7 +89,7 @@ class IO : public SessionObject, public Latent bool set_name (const std::string& str); - virtual void silence (nframes_t); + virtual void silence (framecnt_t); int ensure_io (ChanCount cnt, bool clear, void *src); @@ -109,9 +109,9 @@ class IO : public SessionObject, public Latent bool connected () const; bool physically_connected () const; - nframes_t signal_latency() const { return _own_latency; } - nframes_t latency() const; - void set_port_latency (nframes_t); + framecnt_t signal_latency () const { return _own_latency; } + framecnt_t latency () const; + void set_port_latency (framecnt_t); void update_port_total_latencies (); @@ -188,9 +188,9 @@ class IO : public SessionObject, public Latent /* three utility functions - this just seems to be simplest place to put them */ - void collect_input (BufferSet& bufs, nframes_t nframes, ChanCount offset); - void process_input (boost::shared_ptr, framepos_t start_frame, framepos_t end_frame, nframes_t nframes); - void copy_to_outputs (BufferSet& bufs, DataType type, nframes_t nframes, nframes_t offset); + void collect_input (BufferSet& bufs, pframes_t nframes, ChanCount offset); + void process_input (boost::shared_ptr, framepos_t start_frame, framepos_t end_frame, pframes_t nframes); + void copy_to_outputs (BufferSet& bufs, DataType type, pframes_t nframes, framecnt_t offset); /* AudioTrack::deprecated_use_diskstream_connections() needs these */ -- cgit v1.2.3