]> git.sesse.net Git - movit/blob - effect_chain.h
Build with debug info.
[movit] / effect_chain.h
1 #ifndef _EFFECT_CHAIN_H
2 #define _EFFECT_CHAIN_H 1
3
4 #include <vector>
5
6 #include "effect.h"
7 #include "effect_id.h"
8
9 enum PixelFormat { FORMAT_RGB, FORMAT_RGBA };
10
11 enum ColorSpace {
12         COLORSPACE_sRGB = 0,
13         COLORSPACE_REC_709 = 0,  // Same as sRGB.
14         COLORSPACE_REC_601_525 = 1,
15         COLORSPACE_REC_601_625 = 2,
16 };
17
18 enum GammaCurve {
19         GAMMA_LINEAR = 0,
20         GAMMA_sRGB = 1,
21         GAMMA_REC_601 = 2,
22         GAMMA_REC_709 = 2,  // Same as Rec. 601.
23 };
24
25 struct ImageFormat {
26         PixelFormat pixel_format;
27         ColorSpace color_space;
28         GammaCurve gamma_curve;
29 };
30
31 class EffectChain {
32 public:
33         EffectChain(unsigned width, unsigned height);
34
35         // input, effects, output, finalize need to come in that specific order.
36
37         void add_input(const ImageFormat &format);
38
39         // The returned pointer is owned by EffectChain.
40         Effect *add_effect(EffectId effect);
41
42         void add_output(const ImageFormat &format);
43         void finalize();
44
45         //void render(unsigned char *src, unsigned char *dst);
46         void render_to_screen(unsigned char *src);
47
48 private:
49         unsigned width, height;
50         ImageFormat input_format, output_format;
51         std::vector<Effect *> effects;
52
53         int glsl_program_num;
54         bool finalized;
55
56         // Used during the building of the effect chain.
57         ColorSpace current_color_space;
58         GammaCurve current_gamma_curve; 
59 };
60
61
62 #endif // !defined(_EFFECT_CHAIN_H)