]> git.sesse.net Git - movit/blobdiff - colorspace_conversion_effect.h
Check for __APPLE__ instead of __DARWIN__.
[movit] / colorspace_conversion_effect.h
index e487d7056a7925f795049e7c4bfbc948d4329f6e..76246d6519e4b6c668d38d3b6d3595541091578d 100644 (file)
@@ -1,16 +1,41 @@
-#ifndef _COLORSPACE_CONVERSION_EFFECT_H
-#define _COLORSPACE_CONVERSION_EFFECT_H 1
+#ifndef _MOVIT_COLORSPACE_CONVERSION_EFFECT_H
+#define _MOVIT_COLORSPACE_CONVERSION_EFFECT_H 1
+
+// An effect to convert between different color spaces.
+// Can convert freely between sRGB/Rec. 709 and the two different Rec. 601
+// color spaces (which thankfully have the same white point).
+//
+// We don't do any fancy gamut mapping or similar; colors that are out-of-gamut
+// will simply stay out-of-gamut, and probably clip in the output stage.
+
+#include <Eigen/Core>
+#include <string>
 
 #include "effect.h"
-#include "effect_chain.h"
+#include "image_format.h"
+
+namespace movit {
+
+class ColorspaceConversionEffect : public Effect {
+private:
+       // Should not be instantiated by end users.
+       ColorspaceConversionEffect();
+       friend class EffectChain;
 
-class ColorSpaceConversionEffect : public Effect {
 public:
-       ColorSpaceConversionEffect();
-       std::string output_glsl();
+       virtual std::string effect_type_id() const { return "ColorspaceConversionEffect"; }
+       std::string output_fragment_shader();
+
+       virtual bool needs_srgb_primaries() const { return false; }
+       virtual AlphaHandling alpha_handling() const { return DONT_CARE_ALPHA_TYPE; }
+
+       // Get a conversion matrix from the given color space to XYZ.
+       static Eigen::Matrix3d get_xyz_matrix(Colorspace space);
 
 private:
-       ColorSpace source_space, destination_space;
+       Colorspace source_space, destination_space;
 };
 
-#endif // !defined(_COLORSPACE_CONVERSION_EFFECT_H)
+}  // namespace movit
+
+#endif // !defined(_MOVIT_COLORSPACE_CONVERSION_EFFECT_H)