Remove unused variables.
[ardour.git] / libs / ardour / ardour / delivery.h
index 0e55356928fc259f640b93d7859e8c58b082fea0..e74d0cc52427406de02f6e4373fcc82505beb11b 100644 (file)
@@ -74,7 +74,7 @@ public:
 
        void flush_buffers (framecnt_t nframes, framepos_t time);
        void no_outs_cuz_we_no_monitor(bool);
-       void cycle_start (pframes_t);
+       virtual void cycle_start (pframes_t);
        void transport_stopped (framepos_t frame);
        void realtime_locate ();
 
@@ -95,11 +95,13 @@ public:
        boost::shared_ptr<PannerShell> panner_shell() const { return _panshell; }
        boost::shared_ptr<Panner> panner() const;
 
+       void unpan ();
        void reset_panner ();
        void defer_pan_reset ();
        void allow_pan_reset ();
 
        uint32_t pans_required() const { return _configured_input.n_audio(); }
+       virtual uint32_t pan_outs() const;
 
   protected:
        Role        _role;
@@ -109,7 +111,6 @@ public:
        boost::shared_ptr<MuteMaster> _mute_master;
        bool         no_panner_reset;
        boost::shared_ptr<PannerShell> _panshell;
-       framecnt_t   scnt;
 
        static bool panners_legal;
        static PBD::Signal0<int>            PannersLegal;