13
0

display results of a bounce in the region list

git-svn-id: svn://localhost/ardour2/trunk@952 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-10-05 12:19:28 +00:00
parent 84f57e1397
commit a46aa719a6

View File

@ -66,6 +66,7 @@
#include <ardour/click.h>
#include <ardour/data_type.h>
#include <ardour/source_factory.h>
#include <ardour/region_factory.h>
#ifdef HAVE_LIBLO
#include <ardour/osc.h>
@ -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<Region> aregion = RegionFactory::create (srcs, 0, srcs.front()->length(),
region_name_from_path (srcs.front()->name()));
ret = 0;
}