summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/audio_track.h
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/ardour/audio_track.h
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/ardour/audio_track.h')
-rw-r--r--libs/ardour/ardour/audio_track.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/audio_track.h b/libs/ardour/ardour/audio_track.h
index 2654b40142..bea763a176 100644
--- a/libs/ardour/ardour/audio_track.h
+++ b/libs/ardour/ardour/audio_track.h
@@ -53,13 +53,13 @@ class AudioTrack : public Track
int use_diskstream (string name);
int use_diskstream (const PBD::ID& id);
- int export_stuff (BufferSet& bufs, nframes_t nframes, nframes_t end_frame);
+ int export_stuff (BufferSet& bufs, nframes_t nframes, nframes_t end_frame, bool enable_processing = true);
void freeze (InterThreadInfo&);
void unfreeze ();
boost::shared_ptr<Region> bounce (InterThreadInfo&);
- boost::shared_ptr<Region> bounce_range (nframes_t start, nframes_t end, InterThreadInfo&);
+ boost::shared_ptr<Region> bounce_range (nframes_t start, nframes_t end, InterThreadInfo&, bool enable_processing);
int set_state(const XMLNode& node);