summaryrefslogtreecommitdiff
path: root/libs/ardour/midi_track.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-21 01:28:27 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-21 01:28:27 +0000
commitda9b82732eed632d8b940818382f7eb369100964 (patch)
tree8e6704e493ef08c984c0c81b636cb42789141da6 /libs/ardour/midi_track.cc
parent91c057494be9f97020211ee1855c2d1d190df95c (diff)
Remove unused with_processors parameter to
process_output_buffers; functionality to return elsewhere. git-svn-id: svn://localhost/ardour2/branches/3.0@10722 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/midi_track.cc')
-rw-r--r--libs/ardour/midi_track.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/libs/ardour/midi_track.cc b/libs/ardour/midi_track.cc
index 8a50e88fa5..ff9810629f 100644
--- a/libs/ardour/midi_track.cc
+++ b/libs/ardour/midi_track.cc
@@ -360,9 +360,10 @@ MidiTrack::roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame
/* final argument: don't waste time with automation if we're recording or we've just stopped (yes it can happen) */
- process_output_buffers (bufs, start_frame, end_frame, nframes,
- (!_session.get_record_enabled() || !Config->get_do_not_record_plugins()), declick,
- (!diskstream->record_enabled() && !_session.transport_stopped()));
+ process_output_buffers (
+ bufs, start_frame, end_frame, nframes,
+ declick, (!diskstream->record_enabled() && !_session.transport_stopped())
+ );
}
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {