]> git.sesse.net Git - movit/blobdiff - image_format.h
Change so that all modifications to the graph (meta-effects, colorspace information...
[movit] / image_format.h
index 2f7231780875e6ec58e740669439ec60b3a57c02..55aa8d4989b26233d2688243e0370f08c46e4552 100644 (file)
@@ -4,6 +4,7 @@
 enum MovitPixelFormat { FORMAT_RGB, FORMAT_RGBA, FORMAT_BGR, FORMAT_BGRA, FORMAT_GRAYSCALE };
 
 enum ColorSpace {
+       COLORSPACE_INVALID = -1,  // For internal use.
        COLORSPACE_sRGB = 0,
        COLORSPACE_REC_709 = 0,  // Same as sRGB.
        COLORSPACE_REC_601_525 = 1,
@@ -11,6 +12,7 @@ enum ColorSpace {
 };
 
 enum GammaCurve {
+       GAMMA_INVALID = -1,  // For internal use.
        GAMMA_LINEAR = 0,
        GAMMA_sRGB = 1,
        GAMMA_REC_601 = 2,