]> git.sesse.net Git - movit/blob - effect_chain.cpp
19c485c32aea33acb2d6fc8fd57cf848288380f5
[movit] / effect_chain.cpp
1 #define GL_GLEXT_PROTOTYPES 1
2
3 #include <stdio.h>
4 #include <string.h>
5 #include <assert.h>
6
7 #include <GL/gl.h>
8 #include <GL/glext.h>
9
10 #include "util.h"
11 #include "effect_chain.h"
12 #include "gamma_expansion_effect.h"
13 #include "gamma_compression_effect.h"
14 #include "lift_gamma_gain_effect.h"
15 #include "colorspace_conversion_effect.h"
16 #include "saturation_effect.h"
17 #include "mirror_effect.h"
18 #include "vignette_effect.h"
19 #include "blur_effect.h"
20
21 EffectChain::EffectChain(unsigned width, unsigned height)
22         : width(width), height(height), use_srgb_texture_format(false), finalized(false) {}
23
24 void EffectChain::add_input(const ImageFormat &format)
25 {
26         input_format = format;
27         current_color_space = format.color_space;
28         current_gamma_curve = format.gamma_curve;
29 }
30
31 void EffectChain::add_output(const ImageFormat &format)
32 {
33         output_format = format;
34 }
35         
36 Effect *instantiate_effect(EffectId effect)
37 {
38         switch (effect) {
39         case EFFECT_GAMMA_EXPANSION:
40                 return new GammaExpansionEffect();
41         case EFFECT_GAMMA_COMPRESSION:
42                 return new GammaCompressionEffect();
43         case EFFECT_COLOR_SPACE_CONVERSION:
44                 return new ColorSpaceConversionEffect();
45         case EFFECT_LIFT_GAMMA_GAIN:
46                 return new LiftGammaGainEffect();
47         case EFFECT_SATURATION:
48                 return new SaturationEffect();
49         case EFFECT_MIRROR:
50                 return new MirrorEffect();
51         case EFFECT_VIGNETTE:
52                 return new VignetteEffect();
53         case EFFECT_BLUR:
54                 return new BlurEffect();
55         }
56         assert(false);
57 }
58
59 void EffectChain::normalize_to_linear_gamma()
60 {
61         if (current_gamma_curve == GAMMA_sRGB) {
62                 // TODO: check if the extension exists
63                 use_srgb_texture_format = true;
64         } else {
65                 GammaExpansionEffect *gamma_conversion = new GammaExpansionEffect();
66                 gamma_conversion->set_int("source_curve", current_gamma_curve);
67                 effects.push_back(gamma_conversion);
68         }
69         current_gamma_curve = GAMMA_LINEAR;
70 }
71
72 void EffectChain::normalize_to_srgb()
73 {
74         assert(current_gamma_curve == GAMMA_LINEAR);
75         ColorSpaceConversionEffect *colorspace_conversion = new ColorSpaceConversionEffect();
76         colorspace_conversion->set_int("source_space", current_color_space);
77         colorspace_conversion->set_int("destination_space", COLORSPACE_sRGB);
78         effects.push_back(colorspace_conversion);
79         current_color_space = COLORSPACE_sRGB;
80 }
81
82 Effect *EffectChain::add_effect(EffectId effect_id)
83 {
84         Effect *effect = instantiate_effect(effect_id);
85
86         if (effect->needs_linear_light() && current_gamma_curve != GAMMA_LINEAR) {
87                 normalize_to_linear_gamma();
88         }
89
90         if (effect->needs_srgb_primaries() && current_color_space != COLORSPACE_sRGB) {
91                 normalize_to_srgb();
92         }
93
94         effects.push_back(effect);
95         return effect;
96 }
97
98 // GLSL pre-1.30 doesn't support token pasting. Replace PREFIX(x) with <effect_id>_x.
99 std::string replace_prefix(const std::string &text, const std::string &prefix)
100 {
101         std::string output;
102         size_t start = 0;
103
104         while (start < text.size()) {
105                 size_t pos = text.find("PREFIX(", start);
106                 if (pos == std::string::npos) {
107                         output.append(text.substr(start, std::string::npos));
108                         break;
109                 }
110
111                 output.append(text.substr(start, pos - start));
112                 output.append(prefix);
113                 output.append("_");
114
115                 pos += strlen("PREFIX(");
116         
117                 // Output stuff until we find the matching ), which we then eat.
118                 int depth = 1;
119                 size_t end_arg_pos = pos;
120                 while (end_arg_pos < text.size()) {
121                         if (text[end_arg_pos] == '(') {
122                                 ++depth;
123                         } else if (text[end_arg_pos] == ')') {
124                                 --depth;
125                                 if (depth == 0) {
126                                         break;
127                                 }
128                         }
129                         ++end_arg_pos;
130                 }
131                 output.append(text.substr(pos, end_arg_pos - pos));
132                 ++end_arg_pos;
133                 assert(depth == 0);
134                 start = end_arg_pos;
135         }
136         return output;
137 }
138
139 EffectChain::Phase EffectChain::compile_glsl_program(unsigned start_index, unsigned end_index)
140 {
141         bool input_needs_mipmaps = false;
142         std::string frag_shader = read_file("header.frag");
143         for (unsigned i = start_index; i < end_index; ++i) {
144                 char effect_id[256];
145                 sprintf(effect_id, "eff%d", i);
146         
147                 frag_shader += "\n";
148                 frag_shader += std::string("#define FUNCNAME ") + effect_id + "\n";
149                 frag_shader += replace_prefix(effects[i]->output_convenience_uniforms(), effect_id);
150                 frag_shader += replace_prefix(effects[i]->output_fragment_shader(), effect_id);
151                 frag_shader += "#undef PREFIX\n";
152                 frag_shader += "#undef FUNCNAME\n";
153                 frag_shader += "#undef LAST_INPUT\n";
154                 frag_shader += std::string("#define LAST_INPUT ") + effect_id + "\n";
155                 frag_shader += "\n";
156
157                 input_needs_mipmaps |= effects[i]->needs_mipmaps();
158         }
159         frag_shader.append(read_file("footer.frag"));
160         printf("%s\n", frag_shader.c_str());
161         
162         GLuint glsl_program_num = glCreateProgram();
163         GLuint vs_obj = compile_shader(read_file("vs.vert"), GL_VERTEX_SHADER);
164         GLuint fs_obj = compile_shader(frag_shader, GL_FRAGMENT_SHADER);
165         glAttachShader(glsl_program_num, vs_obj);
166         check_error();
167         glAttachShader(glsl_program_num, fs_obj);
168         check_error();
169         glLinkProgram(glsl_program_num);
170         check_error();
171
172         Phase phase;
173         phase.glsl_program_num = glsl_program_num;
174         phase.input_needs_mipmaps = input_needs_mipmaps;
175         phase.start = start_index;
176         phase.end = end_index;
177
178         return phase;
179 }
180
181 void EffectChain::finalize()
182 {
183         // Add normalizers to get the output format right.
184         if (current_color_space != output_format.color_space) {
185                 ColorSpaceConversionEffect *colorspace_conversion = new ColorSpaceConversionEffect();
186                 colorspace_conversion->set_int("source_space", current_color_space);
187                 colorspace_conversion->set_int("destination_space", output_format.color_space);
188                 effects.push_back(colorspace_conversion);
189                 current_color_space = output_format.color_space;
190         }
191         if (current_gamma_curve != output_format.gamma_curve) {
192                 if (current_gamma_curve != GAMMA_LINEAR) {
193                         normalize_to_linear_gamma();
194                 }
195                 assert(current_gamma_curve == GAMMA_LINEAR);
196                 GammaCompressionEffect *gamma_conversion = new GammaCompressionEffect();
197                 gamma_conversion->set_int("destination_curve", output_format.gamma_curve);
198                 effects.push_back(gamma_conversion);
199                 current_gamma_curve = output_format.gamma_curve;
200         }
201
202         // Construct the GLSL programs. We end a program every time we come
203         // to an effect marked as "needs many samples" (ie. "please let me
204         // sample directly from a texture, with no arithmetic in-between"),
205         // and of course at the end.
206         unsigned start = 0;
207         for (unsigned i = 0; i < effects.size(); ++i) {
208                 if (effects[i]->needs_many_samples() && i != start) {
209                         phases.push_back(compile_glsl_program(start, i));
210                         start = i;
211                 }
212         }
213         phases.push_back(compile_glsl_program(start, effects.size()));
214
215         // If we have more than one phase, we need intermediate render-to-texture.
216         // Construct an FBO, and then as many textures as we need.
217         if (phases.size() > 1) {
218                 glGenFramebuffers(1, &fbo);
219
220                 unsigned num_textures = std::max<int>(phases.size() - 1, 2);
221                 glGenTextures(num_textures, temp_textures);
222
223                 unsigned char *empty = new unsigned char[width * height * 4];
224                 for (unsigned i = 0; i < num_textures; ++i) {
225                         glBindTexture(GL_TEXTURE_2D, temp_textures[i]);
226                         check_error();
227                         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
228                         check_error();
229                         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
230                         check_error();
231                         glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F_ARB, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, empty);
232                         check_error();
233                 }
234                 delete[] empty;
235         }
236         
237         // Translate the input format to OpenGL's enums.
238         GLenum internal_format;
239         if (use_srgb_texture_format) {
240                 internal_format = GL_SRGB8;
241         } else {
242                 internal_format = GL_RGBA8;
243         }
244         if (input_format.pixel_format == FORMAT_RGB) {
245                 format = GL_RGB;
246                 bytes_per_pixel = 3;
247         } else if (input_format.pixel_format == FORMAT_RGBA) {
248                 format = GL_RGBA;
249                 bytes_per_pixel = 4;
250         } else if (input_format.pixel_format == FORMAT_BGR) {
251                 format = GL_BGR;
252                 bytes_per_pixel = 3;
253         } else if (input_format.pixel_format == FORMAT_BGRA) {
254                 format = GL_BGRA;
255                 bytes_per_pixel = 4;
256         } else {
257                 assert(false);
258         }
259
260         // Create PBO to hold the texture holding the input image, and then the texture itself.
261         glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 2);
262         check_error();
263         glBufferData(GL_PIXEL_UNPACK_BUFFER_ARB, width * height * bytes_per_pixel, NULL, GL_STREAM_DRAW);
264         check_error();
265
266         void *mapped_pbo = glMapBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB, GL_WRITE_ONLY);
267         memset(mapped_pbo, 0, width * height * bytes_per_pixel);
268         glUnmapBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB);
269         
270         glGenTextures(1, &source_image_num);
271         check_error();
272         glBindTexture(GL_TEXTURE_2D, source_image_num);
273         check_error();
274         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
275         check_error();
276         glTexImage2D(GL_TEXTURE_2D, 0, internal_format, width, height, 0, format, GL_UNSIGNED_BYTE, BUFFER_OFFSET(0));
277         check_error();
278         glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
279         check_error();
280
281         finalized = true;
282 }
283
284 void EffectChain::render_to_screen(unsigned char *src)
285 {
286         assert(finalized);
287
288         // Copy the pixel data into the PBO.
289         glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 2);
290         check_error();
291         void *mapped_pbo = glMapBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB, GL_WRITE_ONLY);
292         memcpy(mapped_pbo, src, width * height * bytes_per_pixel);
293         glUnmapBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB);
294         check_error();
295
296         // Re-upload the texture from the PBO.
297         glActiveTexture(GL_TEXTURE0);
298         check_error();
299         glBindTexture(GL_TEXTURE_2D, source_image_num);
300         check_error();
301         glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, GL_UNSIGNED_BYTE, BUFFER_OFFSET(0));
302         check_error();
303         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
304         check_error();
305         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
306         check_error();
307         glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
308         check_error();
309
310         // Basic state.
311         glDisable(GL_BLEND);
312         check_error();
313         glDisable(GL_DEPTH_TEST);
314         check_error();
315         glDepthMask(GL_FALSE);
316         check_error();
317
318         glMatrixMode(GL_PROJECTION);
319         glLoadIdentity();
320         glOrtho(0.0, 1.0, 0.0, 1.0, 0.0, 1.0);
321
322         glMatrixMode(GL_MODELVIEW);
323         glLoadIdentity();
324
325         if (phases.size() > 1) {
326                 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
327                 check_error();
328         }
329
330         for (unsigned phase = 0; phase < phases.size(); ++phase) {
331                 // Set up inputs and outputs for this phase.
332                 if (phase == 0) {
333                         // First phase reads from the input texture (which is already bound).
334                 } else {
335                         glBindTexture(GL_TEXTURE_2D, temp_textures[(phase + 1) % 2]);
336                         check_error();
337                 }
338                 if (phases[phase].input_needs_mipmaps) {
339                         glGenerateMipmap(GL_TEXTURE_2D);
340                         check_error();
341                         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
342                         check_error();
343                 } else {
344                         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
345                         check_error();
346                 }
347
348                 if (phase == phases.size() - 1) {
349                         // Last phase goes directly to the screen.
350                         glBindFramebuffer(GL_FRAMEBUFFER, 0);
351                         check_error();
352                 } else {
353                         glFramebufferTexture2D(
354                                 GL_FRAMEBUFFER,
355                                 GL_COLOR_ATTACHMENT0,
356                                 GL_TEXTURE_2D,
357                                 temp_textures[phase % 2],
358                                 0);
359                 }
360
361                 // We have baked an upside-down transform into the quad coordinates,
362                 // since the typical graphics program will have the origin at the upper-left,
363                 // while OpenGL uses lower-left. In the next ones, however, the origin
364                 // is all right, and we need to reverse that.
365                 if (phase == 1) {
366                         glTranslatef(0.0f, 1.0f, 0.0f);
367                         glScalef(1.0f, -1.0f, 1.0f);
368                 }
369
370                 // Give the required parameters to all the effects.
371                 glUseProgram(phases[phase].glsl_program_num);
372                 check_error();
373
374                 glUniform1i(glGetUniformLocation(phases[phase].glsl_program_num, "input_tex"), 0);
375                 check_error();
376
377                 unsigned sampler_num = 1;
378                 for (unsigned i = phases[phase].start; i < phases[phase].end; ++i) {
379                         char effect_id[256];
380                         sprintf(effect_id, "eff%d", i);
381                         effects[i]->set_uniforms(phases[phase].glsl_program_num, effect_id, &sampler_num);
382                 }
383
384                 // Now draw!
385                 glBegin(GL_QUADS);
386
387                 glTexCoord2f(0.0f, 1.0f);
388                 glVertex2f(0.0f, 0.0f);
389
390                 glTexCoord2f(1.0f, 1.0f);
391                 glVertex2f(1.0f, 0.0f);
392
393                 glTexCoord2f(1.0f, 0.0f);
394                 glVertex2f(1.0f, 1.0f);
395
396                 glTexCoord2f(0.0f, 0.0f);
397                 glVertex2f(0.0f, 1.0f);
398
399                 glEnd();
400                 check_error();
401
402                 // HACK
403                 glActiveTexture(GL_TEXTURE0);
404                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_BASE_LEVEL, 0);
405                 check_error();
406                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 1000);
407                 check_error();
408         }
409 }