fix visual focus indication in IOSelector; import pays attention to audio file embedd...
[ardour.git] / libs / ardour / ardour / source_factory.h
index 92ed0415c8ca2bed392970759441d30bc322e85b..6cb262a29918145c9a58abf75c11c8c52d8aad1a 100644 (file)
@@ -13,15 +13,20 @@ class XMLNode;
 
 namespace ARDOUR {
 
+class Session;
+
 class SourceFactory {
   public:
        static sigc::signal<void,boost::shared_ptr<Source> > SourceCreated;
 
-       static boost::shared_ptr<Source> create (const XMLNode& node);
+       static boost::shared_ptr<Source> create (Session&, const XMLNode& node);
 
        // MIDI sources will have to be hacked in here somehow
-       static boost::shared_ptr<Source> createReadable (std::string idstr, AudioFileSource::Flag flags, bool announce = true);
-       static boost::shared_ptr<Source> createWritable (std::string name, bool destructive, jack_nframes_t rate, bool announce = true);
+       static boost::shared_ptr<Source> createReadable (Session&, std::string idstr, AudioFileSource::Flag flags, bool announce = true);
+       static boost::shared_ptr<Source> createWritable (Session&, std::string name, bool destructive, nframes_t rate, bool announce = true);
+
+  private:
+       static int setup_peakfile (boost::shared_ptr<Source>);
 };
 
 }