From 28368793415ba934132994d8c10a5e149c1a8d9d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 23 Apr 2009 17:48:37 +0000 Subject: remove offset from process callback tree. some breakage may have occured. yes, really. git-svn-id: svn://localhost/ardour2/branches/3.0@4999 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_click.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs/ardour/session_click.cc') diff --git a/libs/ardour/session_click.cc b/libs/ardour/session_click.cc index 6127843d47..cbe085b82d 100644 --- a/libs/ardour/session_click.cc +++ b/libs/ardour/session_click.cc @@ -38,7 +38,7 @@ using namespace PBD; Pool Session::Click::pool ("click", sizeof (Click), 128); void -Session::click (nframes_t start, nframes_t nframes, nframes_t offset) +Session::click (nframes_t start, nframes_t nframes) { TempoMap::BBTPointList *points; Sample *buf; @@ -50,7 +50,7 @@ Session::click (nframes_t start, nframes_t nframes, nframes_t offset) Glib::RWLock::WriterLock clickm (click_lock, Glib::TRY_LOCK); if (!clickm.locked() || _transport_speed != 1.0 || !_clicking || click_data == 0) { - _click_io->silence (nframes, offset); + _click_io->silence (nframes); return; } @@ -127,7 +127,7 @@ Session::click (nframes_t start, nframes_t nframes, nframes_t offset) i = next; } - _click_io->deliver_output (bufs, start, end, nframes, offset); + _click_io->deliver_output (bufs, start, end, nframes); } void -- cgit v1.2.3