new automation state model, sort of working, but not really
[ardour.git] / libs / ardour / ardour / audio_unit.h
index 1c8d6cbc2dfa6d7d1617d2bca73dbbde10184819..d82425765d9a7d9afc63598c34934791d342fbe2 100644 (file)
@@ -54,7 +54,7 @@ class AUPlugin : public ARDOUR::Plugin
        const char * maker () const;
        uint32_t parameter_count () const;
        float default_value (uint32_t port);
-       jack_nframes_t latency () const;
+       nframes_t latency () const;
        void set_parameter (uint32_t which, float val);
        float get_parameter (uint32_t which) const;
     
@@ -62,12 +62,10 @@ class AUPlugin : public ARDOUR::Plugin
        uint32_t nth_parameter (uint32_t which, bool& ok) const;
        void activate ();
        void deactivate ();
-       void set_block_size (jack_nframes_t nframes);
+       void set_block_size (nframes_t nframes);
     
-       int connect_and_run (vector<Sample*>& bufs, uint32_t maxbuf, int32_t& in, int32_t& out, jack_nframes_t nframes, jack_nframes_t offset);
+       int connect_and_run (vector<Sample*>& bufs, uint32_t maxbuf, int32_t& in, int32_t& out, nframes_t nframes, nframes_t offset);
        std::set<uint32_t> automatable() const;
-       void store_state (ARDOUR::PluginState&);
-       void restore_state (ARDOUR::PluginState&);
        string describe_parameter (uint32_t);
        string state_node_name () const { return "audiounit"; }
        void print_parameter (uint32_t, char*, uint32_t len) const;
@@ -86,6 +84,9 @@ class AUPlugin : public ARDOUR::Plugin
     
        bool has_editor () const;
        
+       CAAudioUnit* get_au () { return unit; }
+       CAComponent* get_comp () { return comp; }
+       
   private:
        CAComponent* comp;
     CAAudioUnit* unit;
@@ -96,6 +97,8 @@ class AUPlugin : public ARDOUR::Plugin
        std::vector<std::pair<uint32_t, uint32_t> > parameter_map;
 };
 
+typedef boost::shared_ptr<AUPlugin> AUPluginPtr;
+
 class AUPluginInfo : public PluginInfo {
   public:      
        AUPluginInfo () { };
@@ -108,6 +111,7 @@ class AUPluginInfo : public PluginInfo {
 
   private:
        static std::string get_name (CAComponentDescription&);
+       void setup_nchannels (CAComponentDescription&);
 };
 
 typedef boost::shared_ptr<AUPluginInfo> AUPluginInfoPtr;