]> git.sesse.net Git - movit/blob - gamma_expansion_effect.h
059b246325f62bc24ad688edc8064effb575d418
[movit] / gamma_expansion_effect.h
1 #ifndef _GAMMA_EXPANSION_EFFECT_H 
2 #define _GAMMA_EXPANSION_EFFECT_H 1
3
4 // An effect to convert the given gamma curve into linear light,
5 // typically inserted by the framework automatically at the beginning
6 // of the processing chain.
7 //
8 // Currently supports sRGB and Rec. 601/709.
9
10 #include <string>
11
12 #include "effect.h"
13 #include "effect_chain.h"
14 #include "image_format.h"
15
16 #define EXPANSION_CURVE_SIZE 256
17
18 class GammaExpansionEffect : public Effect {
19 private:
20         // Should not be instantiated by end users.
21         GammaExpansionEffect();
22         friend class EffectChain;
23
24 public:
25         virtual std::string effect_type_id() const { return "GammaExpansionEffect"; }
26         std::string output_fragment_shader();
27
28         virtual bool needs_linear_light() const { return false; }
29         virtual bool needs_srgb_primaries() const { return false; }
30
31         // Actually processes its input in a nonlinear fashion,
32         // but does not touch alpha, and we are a special case anyway.
33         virtual AlphaHandling alpha_handling() const { return DONT_CARE_ALPHA_TYPE; }
34
35 private:
36         GammaCurve source_curve;
37         float expansion_curve[EXPANSION_CURVE_SIZE];
38 };
39
40 #endif // !defined(_GAMMA_EXPANSION_EFFECT_H)