~ubuntu-branches/ubuntu/lucid/ardour/lucid-proposed

« back to all changes in this revision

Viewing changes to libs/ardour/ardour/plugin.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-07-29 11:27:04 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729112704-x1rmgb4tjotjyu5u
Tags: 1:2.5-0ubuntu1
* New upstream release.
* debian/patches/s390-FTBFS.patch: Dropped, as it fails to apply, and
  Ubuntu doesn't concern itself with s390.
* debian/control:
  - Fix package description, thanks to the patch in Debian bug #485892.
  - Metadata cleanup and sync control/control.in files.
  - Add libaubio-dev to Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
 
144
144
        sigc::signal<void,uint32_t,float> ParameterChanged;
145
145
 
146
 
        virtual bool fixed_io() const { return true; }
147
 
        virtual int32_t can_support_input_configuration (int32_t in);
148
 
        virtual int32_t compute_output_streams (int32_t nplugins);
 
146
        virtual int32_t can_do (int32_t in, int32_t& out);
149
147
        virtual uint32_t output_streams() const;
150
148
        virtual uint32_t input_streams() const;
151
 
        
 
149
        virtual int32_t configure_io (int32_t in, int32_t out);
 
150
 
152
151
        PBD::Controllable *get_nth_control (uint32_t, bool do_not_create = false);
153
152
        void make_nth_control (uint32_t, const XMLNode&);
154
153