add a convenient lua forward mapped buffers method
[ardour.git] / libs / ardour / ardour / source.h
index afb6430242b7404ce33755d388c0fd4da75dff77..eb204715a1fefb7a349a4bd1e3a11cbd082fadc6 100644 (file)
@@ -49,8 +49,11 @@ class LIBARDOUR_API Source : public SessionObject
                NoPeakFile = 0x40,
                Destructive = 0x80,
                Empty = 0x100, /* used for MIDI only */
+               RF64_RIFF = 0x200,
        };
 
+       typedef Glib::Threads::Mutex::Lock Lock;
+
        Source (Session&, DataType type, const std::string& name, Flag flags=Flag(0));
        Source (Session&, const XMLNode&);
 
@@ -69,8 +72,8 @@ class LIBARDOUR_API Source : public SessionObject
 
        void mark_for_remove();
 
-       virtual void mark_streaming_write_started () {}
-       virtual void mark_streaming_write_completed () = 0;
+       virtual void mark_streaming_write_started (const Lock& lock) {}
+       virtual void mark_streaming_write_completed (const Lock& lock) = 0;
 
        virtual void session_saved() {}
 
@@ -109,6 +112,9 @@ class LIBARDOUR_API Source : public SessionObject
        bool used() const { return use_count() > 0; }
        uint32_t level() const { return _level; }
 
+       std::string ancestor_name() { return _ancestor_name.empty() ? name() : _ancestor_name; }
+       void set_ancestor_name(const std::string& name) { _ancestor_name = name; }
+
   protected:
        DataType            _type;
        Flag                _flags;
@@ -119,6 +125,7 @@ class LIBARDOUR_API Source : public SessionObject
         mutable Glib::Threads::Mutex _analysis_lock;
        gint                _use_count; /* atomic */
        uint32_t            _level; /* how deeply nested is this source w.r.t a disk file */
+       std::string         _ancestor_name;
 
   private:
        void fix_writable_flags ();