X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=image_format.h;h=852090ef9231a03eeab0ebfa7def1879708a6cbe;hp=2f7231780875e6ec58e740669439ec60b3a57c02;hb=771acfe782f3052bb7326ee7f066ed78657754b4;hpb=3fbc6a0e7ecc008b0bdafcbc576b79c24117859e diff --git a/image_format.h b/image_format.h index 2f72317..852090e 100644 --- a/image_format.h +++ b/image_format.h @@ -3,14 +3,17 @@ enum MovitPixelFormat { FORMAT_RGB, FORMAT_RGBA, FORMAT_BGR, FORMAT_BGRA, FORMAT_GRAYSCALE }; -enum ColorSpace { +enum Colorspace { + COLORSPACE_INVALID = -1, // For internal use. COLORSPACE_sRGB = 0, COLORSPACE_REC_709 = 0, // Same as sRGB. COLORSPACE_REC_601_525 = 1, COLORSPACE_REC_601_625 = 2, + COLORSPACE_XYZ = 3, // Mostly useful for testing and debugging. }; enum GammaCurve { + GAMMA_INVALID = -1, // For internal use. GAMMA_LINEAR = 0, GAMMA_sRGB = 1, GAMMA_REC_601 = 2, @@ -23,7 +26,7 @@ enum YCbCrLumaCoefficients { }; struct ImageFormat { - ColorSpace color_space; + Colorspace color_space; GammaCurve gamma_curve; };