summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
authorSampo Savolainen <v2@iki.fi>2009-03-06 19:28:39 +0000
committerSampo Savolainen <v2@iki.fi>2009-03-06 19:28:39 +0000
commitbb20bcc7b6af0e63fc2a9b909b27765ffe5014e1 (patch)
tree219205b1c174ebecbc2298f45ca71fabecb3c74e /libs/ardour/session.cc
parent0697aed059a8dae6c93440924287259422da82be (diff)
Make it possible to consolidate/bounce ranges without applying processing
git-svn-id: svn://localhost/ardour2/branches/3.0@4743 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 97672976ce..25cf610189 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -4055,7 +4055,8 @@ Session::freeze (InterThreadInfo& itt)
boost::shared_ptr<Region>
Session::write_one_track (AudioTrack& track, nframes_t start, nframes_t end,
- bool overwrite, vector<boost::shared_ptr<Source> >& srcs, InterThreadInfo& itt)
+ bool overwrite, vector<boost::shared_ptr<Source> >& srcs,
+ InterThreadInfo& itt, bool enable_processing)
{
boost::shared_ptr<Region> result;
boost::shared_ptr<Playlist> playlist;
@@ -4140,7 +4141,7 @@ Session::write_one_track (AudioTrack& track, nframes_t start, nframes_t end,
this_chunk = min (to_do, chunk_size);
- if (track.export_stuff (buffers, start, this_chunk)) {
+ if (track.export_stuff (buffers, start, this_chunk, enable_processing)) {
goto out;
}