]> git.sesse.net Git - movit/blob - lift_gamma_gain_effect.h
Add an effect for Lanczos resampling.
[movit] / lift_gamma_gain_effect.h
1 #ifndef _LIFT_GAMMA_GAIN_EFFECT_H
2 #define _LIFT_GAMMA_GAIN_EFFECT_H 1
3
4 // A simple lift/gamma/gain effect, used for color grading.
5 //
6 // Very roughly speaking, lift=shadows, gamma=midtones and gain=highlights,
7 // although all parameters affect the entire curve. Mathematically speaking,
8 // it is a bit unusual to look at gamma as a color, but it works pretty well
9 // in practice.
10 //
11 // The classic formula is: output = (gain * (x + lift * (1-x)))^(1/gamma).
12 //
13 // The lift is actually a case where we actually would _not_ want linear light;
14 // since black by definition becomes equal to the lift color, we want lift to
15 // be pretty close to black, but in linear light that means lift affects the
16 // rest of the curve relatively little. Thus, we actually convert to gamma 2.2
17 // before lift, and then back again afterwards. (Gain and gamma are,
18 // up to constants, commutative with the de-gamma operation.)
19
20 #include "effect.h"
21
22 class LiftGammaGainEffect : public Effect {
23 public:
24         LiftGammaGainEffect();
25         virtual std::string effect_type_id() const { return "LiftGammaGainEffect"; }
26         std::string output_fragment_shader();
27
28         void set_gl_state(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num);
29
30 private:
31         RGBTriplet lift, gamma, gain;
32 };
33
34 #endif // !defined(_LIFT_GAMMA_GAIN_EFFECT_H)