summaryrefslogtreecommitdiff
path: root/libs/ardour/source_factory.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-02-06 15:50:05 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-02-06 15:50:05 +0000
commitaa60114843f4990ef93ba83974501495ddda358b (patch)
treeb5318deb08d54fa28c350ac2266ce6e338721eb8 /libs/ardour/source_factory.cc
parent63d28ebd1808b316dd2f8d152d94577b898d336c (diff)
some fixes/improvements for track selection; add upload target to manual makefile; do not build peakfile for SilentFileSource
git-svn-id: svn://localhost/ardour2/trunk@1426 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/source_factory.cc')
-rw-r--r--libs/ardour/source_factory.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/libs/ardour/source_factory.cc b/libs/ardour/source_factory.cc
index 7b2103cdc6..ad80ceaa22 100644
--- a/libs/ardour/source_factory.cc
+++ b/libs/ardour/source_factory.cc
@@ -56,9 +56,6 @@ boost::shared_ptr<Source>
SourceFactory::createSilent (Session& s, const XMLNode& node, nframes_t nframes, float sr)
{
boost::shared_ptr<Source> ret (new SilentFileSource (s, node, nframes, sr));
- if (setup_peakfile (ret)) {
- return boost::shared_ptr<Source>();
- }
SourceCreated (ret);
return ret;
}