X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=colorspace_conversion_effect.h;fp=colorspace_conversion_effect.h;h=bf3583bcd6a201eebbaf8464502c262c7dc4d04f;hp=0000000000000000000000000000000000000000;hb=a88f299483ffe5068cd2828513078b9103325da8;hpb=e61807327b9a1f98f39dd5e1496254905f78e581 diff --git a/colorspace_conversion_effect.h b/colorspace_conversion_effect.h new file mode 100644 index 0000000..bf3583b --- /dev/null +++ b/colorspace_conversion_effect.h @@ -0,0 +1,15 @@ +#ifndef _COLORSPACE_CONVERSION_EFFECT_H +#define _COLORSPACE_CONVERSION_EFFECT_H 1 + +#include "effect.h" +#include "effect_chain.h" + +class ColorSpaceConversionEffect : public Effect { +public: + ColorSpaceConversionEffect(); + +private: + ColorSpace source_space, destination_space; +}; + +#endif // !defined(_COLORSPACE_CONVERSION_EFFECT_H)