Small cleanup: add constructor to InterThreadInfo.
[ardour.git] / libs / ardour / ardour / meter.h
index 1f5e3307d6079abbc28757ddd4022f32a86da143..80adcd41560bb3d862c2fd661d48b972daa18787 100644 (file)
@@ -22,6 +22,7 @@
 #include <vector>
 #include "ardour/types.h"
 #include "ardour/processor.h"
+#include "pbd/signals.h"
 #include "pbd/fastlog.h"
 
 namespace ARDOUR {
@@ -33,16 +34,11 @@ class Session;
 class Metering {
   public:
        static void               update_meters ();
-       static boost::signals2::signal<void()> Meter;
-
-       static boost::signals2::connection connect (boost::function<void()>);
-       static void                        disconnect (boost::signals2::connection& c);
+       static PBD::Signal0<void> Meter;
 
   private:
        /* this object is not meant to be instantiated */
        Metering();
-
-       static Glib::StaticMutex    m_meter_signal_lock;
 };
 
 /** Meters peaks on the input and stores them for access.
@@ -50,7 +46,6 @@ class Metering {
 class PeakMeter : public Processor {
 public:
        PeakMeter(Session& s) : Processor(s, "Meter") {}
-       PeakMeter(Session&s, const XMLNode& node);
 
        void meter();
        void reset ();
@@ -75,6 +70,9 @@ public:
        /** Compute peaks */
        void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes, bool);
 
+       ChanCount input_streams () const { return current_meters; }
+       ChanCount output_streams () const { return current_meters; }
+
        float peak_power (uint32_t n) {
                if (n < _visible_peak_power.size()) {
                        return _visible_peak_power[n];
@@ -96,7 +94,7 @@ public:
 private:
        friend class IO;
        
-       uint32_t current_meters;
+       ChanCount current_meters;
        
        std::vector<float> _peak_power;
        std::vector<float> _visible_peak_power;