update openjpeg + x265, unproxy clip fix, config mods for lv2/opus/x265-10bit
[goodguy/history.git] / cinelerra-5.1 / cinelerra / pluginlv2config.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef PLUGINLV2CONFIG_H
23 #define PLUGINLV2CONFIG_H
24
25 #include "arraylist.h"
26 #include "cstrdup.h"
27 #include "guicast.h"
28 #include "mutex.h"
29 #include "pluginaclient.h"
30 #include "pluginlv2.inc"
31 #include "pluginlv2config.inc"
32 #include "samples.inc"
33
34 #ifdef HAVE_LV2
35 #include <lilv/lilv.h>
36 #include <suil/suil.h>
37
38 #define NS_UI "http://lv2plug.in/ns/extensions/ui#"
39 #include <lv2/lv2plug.in/ns/extensions/ui/ui.h>
40 #include <lv2/lv2plug.in/ns/ext/atom/atom.h>
41 #include <lv2/lv2plug.in/ns/ext/urid/urid.h>
42 #include <lv2/lv2plug.in/ns/ext/state/state.h>
43 #include <lv2/lv2plug.in/ns/ext/worker/worker.h>
44 #include <lv2/lv2plug.in/ns/ext/log/log.h>
45 #include <lv2/lv2plug.in/ns/ext/options/options.h>
46 #include <lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
47 #include <lv2/lv2plug.in/ns/ext/uri-map/uri-map.h>
48 #include <lv2/lv2plug.in/ns/ext/data-access/data-access.h>
49
50
51 class Lv2Feature : public LV2_Feature
52 {
53 public:
54         Lv2Feature(const char *uri, void *dp) {
55                 this->URI = cstrdup(uri);  this->data = dp;
56         }
57         ~Lv2Feature() { delete [] URI; }
58 };
59 class Lv2Features : public ArrayList<Lv2Feature *>
60 {
61 public:
62         Lv2Features() {}
63         ~Lv2Features() { remove_all_objects(); }
64         operator LV2_Feature **() { return (LV2_Feature **)&values[0]; }
65 };
66
67 class PluginLV2UriTable : public ArrayList<const char *>, public Mutex
68 {
69 public:
70         PluginLV2UriTable();
71         ~PluginLV2UriTable();
72         LV2_URID map(const char *uri);
73         const char *unmap(LV2_URID urid);
74 };
75
76 #endif
77
78 class PluginLV2Client_OptName : public BC_ListBoxItem
79 {
80 public:
81         PluginLV2Client_Opt *opt;
82         PluginLV2Client_OptName(PluginLV2Client_Opt *opt);
83 };
84
85 class PluginLV2Client_OptValue : public BC_ListBoxItem
86 {
87 public:
88         PluginLV2Client_Opt *opt;
89         PluginLV2Client_OptValue(PluginLV2Client_Opt *opt);
90         int update();
91 };
92
93 class PluginLV2Client_Opt
94 {
95 public:
96         int idx;
97         const char *sym;
98         PluginLV2ClientConfig *conf;
99         PluginLV2Client_OptName *item_name;
100         PluginLV2Client_OptValue *item_value;
101         float get_value();
102         const char *get_symbol();
103         void set_value(float v);
104         int update(float v);
105         const char *get_name();
106
107         PluginLV2Client_Opt(PluginLV2ClientConfig *conf, int idx);
108         ~PluginLV2Client_Opt();
109 };
110
111
112 class PluginLV2ClientConfig : public ArrayList<PluginLV2Client_Opt *>
113 {
114 public:
115         PluginLV2ClientConfig();
116         ~PluginLV2ClientConfig();
117
118         int equivalent(PluginLV2ClientConfig &that);
119         void copy_from(PluginLV2ClientConfig &that);
120         void interpolate(PluginLV2ClientConfig &prev, PluginLV2ClientConfig &next,
121                 int64_t prev_frame, int64_t next_frame, int64_t current_frame);
122         void reset();
123         void init_lv2(const LilvPlugin *lilv, PluginLV2 *lv2);
124         int update();
125         void dump(FILE *fp);
126
127         int nb_ports, *ports;
128         const char **names, **syms;
129         float *mins, *maxs, *ctls;
130 };
131
132 #endif