]> git.sesse.net Git - movit/blobdiff - gamma_expansion_effect.h
Add proper formats for sRGB without alpha.
[movit] / gamma_expansion_effect.h
index af0d0a908d0d9a1e10d809657db842ae5135453e..81f42d137392cf7e0c08ba557f3a3d090f708f7f 100644 (file)
@@ -9,11 +9,14 @@
 // Note that Movit's internal formats generally do not have enough accuracy
 // for 12-bit input or output.
 
+#include <epoxy/gl.h>
 #include <string>
 
 #include "effect.h"
 #include "image_format.h"
 
+namespace movit {
+
 class GammaExpansionEffect : public Effect {
 private:
        // Should not be instantiated by end users.
@@ -36,4 +39,6 @@ private:
        GammaCurve source_curve;
 };
 
+}  // namespace movit
+
 #endif // !defined(_MOVIT_GAMMA_EXPANSION_EFFECT_H)