summaryrefslogtreecommitdiff
path: root/libs/ardour/region_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/region_factory.cc')
-rw-r--r--libs/ardour/region_factory.cc34
1 files changed, 0 insertions, 34 deletions
diff --git a/libs/ardour/region_factory.cc b/libs/ardour/region_factory.cc
index cc41405551..a0aa3be759 100644
--- a/libs/ardour/region_factory.cc
+++ b/libs/ardour/region_factory.cc
@@ -90,24 +90,6 @@ RegionFactory::create (boost::shared_ptr<Region> region)
}
boost::shared_ptr<Region>
-RegionFactory::create (const Playlist& playlist, boost::shared_ptr<Region> region)
-{
- boost::shared_ptr<Crossfade> xfade;
- boost::shared_ptr<MidiRegion> mr;
-
- if ((xfade = boost::dynamic_pointer_cast<Crossfade>(region)) != 0) {
- boost::shared_ptr<Region> ret (new Crossfade (playlist, xfade));
- /* pure copy constructor - no CheckNewRegion emitted */
- return ret;
- } else {
- fatal << _("programming error: RegionFactory::create(Playlist,Region) called with unknown Region type")
- << endmsg;
- /*NOTREACHED*/
- return boost::shared_ptr<Region>();
- }
-}
-
-boost::shared_ptr<Region>
RegionFactory::create (boost::shared_ptr<AudioRegion> region, nframes_t start,
nframes_t length, std::string name,
layer_t layer, Region::Flag flags, bool announce)
@@ -156,22 +138,6 @@ RegionFactory::create (SourceList& srcs, nframes_t start, nframes_t length, cons
}
boost::shared_ptr<Region>
-RegionFactory::create (const Playlist& playlist, const XMLNode& node)
-{
- /* this is a constructor for "dependent" region types.
- these objects require a playlist so that they can
- look up the region instances that they depend upon.
- */
-
- if (node.name() == Crossfade::node_name()) {
- boost::shared_ptr<Region> ret (new Crossfade (playlist, node));
- return ret;
- }
-
- return boost::shared_ptr<Region> ();
-}
-
-boost::shared_ptr<Region>
RegionFactory::create (SourceList& srcs, const XMLNode& node)
{
if (srcs.empty()) {