summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-09-16 21:45:10 +0000
committerCarl Hetherington <carl@carlh.net>2011-09-16 21:45:10 +0000
commite65636a0873dfe78af1625ea1c9d15d6c0e8b881 (patch)
tree7978b4a0896585ee86c7c79765082200592df799 /libs/ardour
parent32cc3995955cff4b01f127b9d7ee1c350a8e084f (diff)
Remove unused parameter.
git-svn-id: svn://localhost/ardour2/branches/3.0@10090 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/midi_track.h2
-rw-r--r--libs/ardour/ardour/route.h2
-rw-r--r--libs/ardour/ardour/track.h2
-rw-r--r--libs/ardour/graph.cc2
-rw-r--r--libs/ardour/midi_track.cc4
-rw-r--r--libs/ardour/route.cc2
-rw-r--r--libs/ardour/session_process.cc2
-rw-r--r--libs/ardour/track.cc2
8 files changed, 9 insertions, 9 deletions
diff --git a/libs/ardour/ardour/midi_track.h b/libs/ardour/ardour/midi_track.h
index 15a3d3decc..ab8f045faa 100644
--- a/libs/ardour/ardour/midi_track.h
+++ b/libs/ardour/ardour/midi_track.h
@@ -134,7 +134,7 @@ protected:
bool _input_active;
int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
- bool state_changing, bool can_record, bool rec_monitors_input);
+ bool state_changing, bool can_record);
void push_midi_input_to_step_edit_ringbuffer (framecnt_t nframes);
void diskstream_data_recorded (boost::shared_ptr<MidiBuffer>, boost::weak_ptr<MidiSource>);
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index fb6d66a246..1d8c39a21e 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -112,7 +112,7 @@ class Route : public SessionObject, public Automatable, public RouteGroupMember,
int declick, bool can_record, bool rec_monitors_input, bool& need_butler);
virtual int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
- bool state_changing, bool can_record, bool rec_monitors_input);
+ bool state_changing, bool can_record);
virtual int silent_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
bool can_record, bool rec_monitors_input, bool& need_butler);
diff --git a/libs/ardour/ardour/track.h b/libs/ardour/ardour/track.h
index 7f801b31cc..b58b5a3b77 100644
--- a/libs/ardour/ardour/track.h
+++ b/libs/ardour/ardour/track.h
@@ -49,7 +49,7 @@ class Track : public Route, public PublicDiskstream
PBD::Signal0<void> TrackModeChanged;
virtual int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
- bool state_changing, bool can_record, bool rec_monitors_input);
+ bool state_changing, bool can_record);
int silent_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
bool can_record, bool rec_monitors_input, bool& need_butler);
diff --git a/libs/ardour/graph.cc b/libs/ardour/graph.cc
index 685deaeee0..4656a5255e 100644
--- a/libs/ardour/graph.cc
+++ b/libs/ardour/graph.cc
@@ -604,7 +604,7 @@ Graph::process_one_route (Route* route)
retval = route->silent_roll (_process_nframes, _process_start_frame, _process_end_frame, _process_can_record, _process_rec_monitors_input, need_butler);
} else if (_process_noroll) {
route->set_pending_declick (_process_declick);
- retval = route->no_roll (_process_nframes, _process_start_frame, _process_end_frame, _process_non_rt_pending, _process_can_record, _process_declick);
+ retval = route->no_roll (_process_nframes, _process_start_frame, _process_end_frame, _process_non_rt_pending, _process_can_record);
} else {
route->set_pending_declick (_process_declick);
retval = route->roll (_process_nframes, _process_start_frame, _process_end_frame, _process_declick, _process_can_record, _process_rec_monitors_input, need_butler);
diff --git a/libs/ardour/midi_track.cc b/libs/ardour/midi_track.cc
index 1df9950f86..bf1cd363dc 100644
--- a/libs/ardour/midi_track.cc
+++ b/libs/ardour/midi_track.cc
@@ -405,9 +405,9 @@ MidiTrack::roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame
int
MidiTrack::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
- bool state_changing, bool can_record, bool rec_monitors_input)
+ bool state_changing, bool can_record)
{
- int ret = Track::no_roll (nframes, start_frame, end_frame, state_changing, can_record, rec_monitors_input);
+ int ret = Track::no_roll (nframes, start_frame, end_frame, state_changing, can_record);
if (ret == 0 && _step_editing) {
push_midi_input_to_step_edit_ringbuffer (nframes);
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 8d1c1c8397..6ee40103f1 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2763,7 +2763,7 @@ Route::pans_required () const
int
Route::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
- bool session_state_changing, bool /*can_record*/, bool /*rec_monitors_input*/)
+ bool session_state_changing, bool /*can_record*/)
{
Glib::RWLock::ReaderLock lm (_processor_lock, Glib::TRY_LOCK);
if (!lm.locked()) {
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index 9c37e0a09c..f0d2bcaa84 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -120,7 +120,7 @@ Session::no_roll (pframes_t nframes)
(*i)->set_pending_declick (declick);
if ((*i)->no_roll (nframes, _transport_frame, end_frame, non_realtime_work_pending(),
- actively_recording(), declick)) {
+ actively_recording())) {
error << string_compose(_("Session: error in no roll for %1"), (*i)->name()) << endmsg;
ret = -1;
break;
diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc
index a45f37f422..ade0871eb3 100644
--- a/libs/ardour/track.cc
+++ b/libs/ardour/track.cc
@@ -208,7 +208,7 @@ Track::zero_diskstream_id_in_xml (XMLNode& node)
int
Track::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
- bool session_state_changing, bool can_record, bool /*rec_monitors_input*/)
+ bool session_state_changing, bool can_record)
{
Glib::RWLock::ReaderLock lm (_processor_lock, Glib::TRY_LOCK);
if (!lm.locked()) {