Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / pluginlv2client.h
index 80654ef557121d9d1f593aa8fe2d756792bd3698..11845c213e0d66a806680fd394e4f195a35b1225 100644 (file)
@@ -1,3 +1,21 @@
+/*
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published
+ * by the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ * USA
+ */
+
+
 #ifndef __PLUGINLV2CLIENT_H__
 #define __PLUGINLV2CLIENT_H__
 
@@ -22,8 +40,8 @@ public:
        PluginLV2ParentUI *del_ui(PluginLV2Client *client);
        PluginLV2ParentUI *del_ui(PluginLV2ClientWindow *gui);
        PluginLV2ParentUI *add_ui(PluginLV2ParentUI *ui, PluginLV2Client *client);
-       PluginLV2ParentUI *search_ui(Plugin *plugin);
-       PluginLV2ParentUI *find_ui(Plugin *plugin);
+       PluginLV2ParentUI *search_ui(int plugin_id);
+       PluginLV2ParentUI *find_ui(int plugin_id);
        PluginLV2ParentUI *get_ui(PluginLV2Client *client);
 
 };
@@ -31,7 +49,7 @@ public:
 class PluginLV2ParentUI : public ForkParent
 {
 public:
-       PluginLV2ParentUI(Plugin *plugin);
+       PluginLV2ParentUI(int plugin_id);
        ~PluginLV2ParentUI();
        ForkChild* new_fork();
        void start_parent(PluginLV2Client *client);
@@ -41,15 +59,11 @@ public:
        PluginLV2Client *client;
        PluginLV2ClientWindow *gui;
 
+       int plugin_id;
        int hidden;
        int show();
        int hide();
 
-//from Plugin::identitical_location
-       int64_t position;
-       int set_no;
-       int track_no;
-
        static PluginLV2UIs plugin_lv2;
 };