X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=image_format.h;h=852090ef9231a03eeab0ebfa7def1879708a6cbe;hp=f84a0f487ff596f0f65bb864b3b1f3b45dc14748;hb=1ca4785183b5af9a2a255bba0a28dfdae156470a;hpb=898a2140fa78eecb3552f63f021c608b239f969c diff --git a/image_format.h b/image_format.h index f84a0f4..852090e 100644 --- a/image_format.h +++ b/image_format.h @@ -3,7 +3,7 @@ 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. @@ -26,7 +26,7 @@ enum YCbCrLumaCoefficients { }; struct ImageFormat { - ColorSpace color_space; + Colorspace color_space; GammaCurve gamma_curve; };