]> git.sesse.net Git - movit/blob - colorspace_conversion_effect.h
<sys/time.h> is needed for gettimeofday.
[movit] / colorspace_conversion_effect.h
1 #ifndef _COLORSPACE_CONVERSION_EFFECT_H
2 #define _COLORSPACE_CONVERSION_EFFECT_H 1
3
4 #include "effect.h"
5 #include "effect_chain.h"
6
7 class ColorSpaceConversionEffect : public Effect {
8 public:
9         ColorSpaceConversionEffect();
10         std::string output_glsl();
11
12         virtual bool needs_srgb_primaries() { return false; }
13
14 private:
15         ColorSpace source_space, destination_space;
16 };
17
18 #endif // !defined(_COLORSPACE_CONVERSION_EFFECT_H)