]> git.sesse.net Git - movit/blobdiff - colorspace_conversion_effect.h
Yet more moving of stuff around.
[movit] / colorspace_conversion_effect.h
diff --git a/colorspace_conversion_effect.h b/colorspace_conversion_effect.h
new file mode 100644 (file)
index 0000000..bf3583b
--- /dev/null
@@ -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)