]> git.sesse.net Git - mlt/blob - src/modules/opengl/filter_glsl_manager.h
Remove the FBO freelist.
[mlt] / src / modules / opengl / filter_glsl_manager.h
1 /*
2  * filter_glsl_manager.h
3  * Copyright (C) 2013 Dan Dennedy <dan@dennedy.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef GLSL_MANAGER_H
21 #define GLSL_MANAGER_H
22
23 #include <glew.h>
24 #include <mlt++/MltFilter.h>
25 #include <mlt++/MltDeque.h>
26 #include <map>
27 #include <string>
28
29 #define MAXLISTCOUNT 1024
30 typedef struct glsl_list_s *glsl_list;
31 struct glsl_list_s
32 {
33         void *items[MAXLISTCOUNT];
34         int count;
35
36         int ( *add )( glsl_list, void* );
37         void* ( *at )( glsl_list, int );
38         void* ( *take_at )( glsl_list, int );
39         void* ( *take )( glsl_list, void* );
40 };
41
42 struct glsl_texture_s
43 {
44         int used;
45         GLuint texture;
46         int width;
47         int height;
48         GLint internal_format;
49 };
50 typedef struct glsl_texture_s *glsl_texture;
51
52 struct glsl_pbo_s
53 {
54         int size;
55         GLuint pbo;
56 };
57 typedef struct glsl_pbo_s *glsl_pbo;
58
59 class Effect;
60 class EffectChain;
61 class MltInput;
62 class ResourcePool;
63
64 struct GlslChain
65 {
66         EffectChain *effect_chain;
67
68         // All MltInputs in the effect chain. These are not owned by the
69         // EffectChain (although the contained Input* is).
70         std::map<mlt_producer, MltInput*> inputs;
71
72         // All services owned by the effect chain and their associated Movit effect.
73         std::map<mlt_service, Effect*> effects;
74
75         // For each effect in the Movit graph, a unique identifier for the service
76         // and whether it's disabled or not, using post-order traversal.
77         // We need to generate the chain if and only if this has changed.
78         std::string fingerprint;
79 };
80
81 class GlslManager : public Mlt::Filter
82 {
83 public:
84         GlslManager();
85         ~GlslManager();
86         void add_ref(mlt_properties properties);
87         static GlslManager* get_instance();
88
89         glsl_texture get_texture(int width, int height, GLint internal_format);
90         static void release_texture(glsl_texture);
91         static void delete_sync(GLsync sync);
92         glsl_pbo get_pbo(int size);
93         void cleanupContext();
94
95         ResourcePool* get_resource_pool() { return resource_pool; }
96
97         static void set_chain(mlt_service, GlslChain*);
98         static GlslChain* get_chain(mlt_service);
99
100         static Effect* get_effect(mlt_service, mlt_frame);
101         static Effect* set_effect(mlt_service, mlt_frame, Effect*);
102         static MltInput* get_input(mlt_producer, mlt_frame);
103         static MltInput* set_input(mlt_producer, mlt_frame, MltInput*);
104         static uint8_t* get_input_pixel_pointer(mlt_producer, mlt_frame);
105         static uint8_t* set_input_pixel_pointer(mlt_producer, mlt_frame, uint8_t*);
106
107         static mlt_service get_effect_input(mlt_service, mlt_frame);
108         static void set_effect_input(mlt_service, mlt_frame, mlt_service);
109         static void get_effect_secondary_input(mlt_service, mlt_frame, mlt_service*, mlt_frame*);
110         static void set_effect_secondary_input(mlt_service, mlt_frame, mlt_service, mlt_frame);
111
112         int render_frame_texture(EffectChain*, mlt_frame, int width, int height, uint8_t **image);
113         int render_frame_rgba(EffectChain*, mlt_frame, int width, int height, uint8_t **image);
114         static void lock_service(mlt_frame frame);
115         static void unlock_service(mlt_frame frame);
116
117 private:
118         static void* get_frame_specific_data( mlt_service service, mlt_frame frame, const char *key, int *length );
119         static int set_frame_specific_data( mlt_service service, mlt_frame frame, const char *key, void *value, int length, mlt_destructor destroy, mlt_serialiser serialise );
120
121         static void onInit( mlt_properties owner, GlslManager* filter );
122         static void onClose( mlt_properties owner, GlslManager* filter );
123         static void onServiceChanged( mlt_properties owner, mlt_service service );
124         static void onPropertyChanged( mlt_properties owner, mlt_service service, const char* property );
125         ResourcePool* resource_pool;
126         Mlt::Deque texture_list;
127         Mlt::Deque syncs_to_delete;
128         glsl_pbo  pbo;
129         Mlt::Event* initEvent;
130         Mlt::Event* closeEvent;
131         GLsync prev_sync;
132 };
133
134 #endif // GLSL_MANAGER_H