From: Paul Davis Date: Thu, 5 Oct 2006 12:19:28 +0000 (+0000) Subject: display results of a bounce in the region list X-Git-Tag: 2.0beta6~50 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=a46aa719a67722864dbf36cb51a5e5bebc47bb83;p=ardour.git display results of a bounce in the region list git-svn-id: svn://localhost/ardour2/trunk@952 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index bf5f5fcb78..3bcaaf3aca 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -66,6 +66,7 @@ #include #include #include +#include #ifdef HAVE_LIBLO #include @@ -3652,7 +3653,12 @@ Session::write_one_audio_track (AudioTrack& track, nframes_t start, nframes_t le afs->build_peaks (); } } - + + /* construct a region to represent the bounced material */ + + boost::shared_ptr aregion = RegionFactory::create (srcs, 0, srcs.front()->length(), + region_name_from_path (srcs.front()->name())); + ret = 0; }