]> git.sesse.net Git - movit/blob - gamma_compression_effect.h
Rename RGBATriplet to RGBATuple, to avoid silliness.
[movit] / gamma_compression_effect.h
1 #ifndef _MOVIT_GAMMA_COMPRESSION_EFFECT_H 
2 #define _MOVIT_GAMMA_COMPRESSION_EFFECT_H 1
3
4 // An effect to convert linear light to the given gamma curve,
5 // typically inserted by the framework automatically at the end
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 "image_format.h"
14
15 #define COMPRESSION_CURVE_SIZE 4096
16
17 class GammaCompressionEffect : public Effect {
18 private:
19         // Should not be instantiated by end users.
20         GammaCompressionEffect();
21         friend class EffectChain;
22
23 public:
24         virtual std::string effect_type_id() const { return "GammaCompressionEffect"; }
25         std::string output_fragment_shader();
26
27         virtual bool needs_srgb_primaries() const { return false; }
28
29         // Actually needs postmultiplied input as well as outputting it.
30         // EffectChain will take care of that.
31         virtual AlphaHandling alpha_handling() const { return OUTPUT_POSTMULTIPLIED_ALPHA; }
32
33 private:
34         GammaCurve destination_curve;
35         float compression_curve[COMPRESSION_CURVE_SIZE];
36 };
37
38 #endif // !defined(_MOVIT_GAMMA_COMPRESSION_EFFECT_H)