X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=colorspace_conversion_effect.h;h=76246d6519e4b6c668d38d3b6d3595541091578d;hp=b21f72e1a8b6b8782e332aedfaca2455d3f9644b;hb=60e4852ff1b04c525a9e3f1c98a1017db28b27bd;hpb=ddce0987c54cd04fdbb2aee2886ea982e13b84f2 diff --git a/colorspace_conversion_effect.h b/colorspace_conversion_effect.h index b21f72e..76246d6 100644 --- a/colorspace_conversion_effect.h +++ b/colorspace_conversion_effect.h @@ -8,12 +8,14 @@ // 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 #include +#include #include "effect.h" #include "image_format.h" +namespace movit { + class ColorspaceConversionEffect : public Effect { private: // Should not be instantiated by end users. @@ -34,4 +36,6 @@ private: Colorspace source_space, destination_space; }; +} // namespace movit + #endif // !defined(_MOVIT_COLORSPACE_CONVERSION_EFFECT_H)