Now that notify_length_changed() just calls
[ardour.git] / libs / ardour / ardour / source_factory.h
index c59dab92234625e110f27d1473b5ed0bb9f99266..5ddf1f8735bf556b925269c0e00b3217500de9a8 100644 (file)
@@ -32,6 +32,7 @@ namespace ARDOUR {
 
 class Session;
 class AudioSource;
+class Playlist;
 
 class SourceFactory {
   public:
@@ -41,15 +42,22 @@ class SourceFactory {
 
        static boost::shared_ptr<Source> create (Session&, const XMLNode& node, bool async = false);
        static boost::shared_ptr<Source> createSilent (Session&, const XMLNode& node,
-                                                       framecnt_t nframes, float sample_rate);
+                                                      framecnt_t nframes, float sample_rate);
 
-       static boost::shared_ptr<Source> createReadable (DataType type, Session&,
-                       const std::string& path, 
-                       int chn, Source::Flag flags, bool announce = true, bool async = false);
+       static boost::shared_ptr<Source> createReadable
+               (DataType type, Session&,
+                const std::string& path,
+                int chn, Source::Flag flags, bool announce = true, bool async = false);
 
-       static boost::shared_ptr<Source> createWritable (DataType type, Session&,
-                        const std::string& path, const std::string& origin,
-                       bool destructive, nframes_t rate, bool announce = true, bool async = false);
+       static boost::shared_ptr<Source> createWritable
+               (DataType type, Session&,
+                const std::string& path, const std::string& origin,
+                bool destructive, framecnt_t rate, bool announce = true, bool async = false);
+
+
+       static boost::shared_ptr<Source> createFromPlaylist
+               (DataType type, Session& s, boost::shared_ptr<Playlist> p, const PBD::ID& orig, const std::string& name,
+                uint32_t chn, frameoffset_t start, framecnt_t len, bool copy, bool defer_peaks);
 
        static Glib::Cond*                               PeaksToBuild;
        static Glib::StaticMutex                         peak_building_lock;