summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_ops.cc
diff options
context:
space:
mode:
authorSampo Savolainen <v2@iki.fi>2009-03-05 19:47:39 +0000
committerSampo Savolainen <v2@iki.fi>2009-03-05 19:47:39 +0000
commita4ecfdedec66484809e37c85213a78eb38137754 (patch)
tree9bd87748cf2569c2c20d5787e6735fca6e8cb41c /gtk2_ardour/editor_ops.cc
parentcb3aaf44cb6d8262962c016ff148fedcb0dd71ba (diff)
Make "consolidate range" and "bounce range to region list" not apply processing to the original audio. Added variants which do apply processing. Plus changed AudioTrack::export_stuff() to use SSE mix functions for non-automated gain.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4736 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_ops.cc')
-rw-r--r--gtk2_ardour/editor_ops.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc
index bc934ead1d..ff521c91c6 100644
--- a/gtk2_ardour/editor_ops.cc
+++ b/gtk2_ardour/editor_ops.cc
@@ -3666,7 +3666,7 @@ Editor::freeze_route ()
}
void
-Editor::bounce_range_selection (bool replace)
+Editor::bounce_range_selection (bool replace, bool enable_processing)
{
if (selection->time.empty()) {
return;
@@ -3701,7 +3701,7 @@ Editor::bounce_range_selection (bool replace)
itt.progress = false;
XMLNode &before = playlist->get_state();
- boost::shared_ptr<Region> r = atv->audio_track()->bounce_range (start, start+cnt, itt);
+ boost::shared_ptr<Region> r = atv->audio_track()->bounce_range (start, start+cnt, itt, enable_processing);
if (replace) {
list<AudioRange> ranges;