]> git.sesse.net Git - movit/blob - image_format.h
77838ececa33918b061744e31b5f5cc58adbb9bf
[movit] / image_format.h
1 #ifndef _MOVIT_IMAGE_FORMAT_H
2 #define _MOVIT_IMAGE_FORMAT_H 1
3
4 // Note: Movit's internal processing formats do not have enough
5 // accuracy to support 12-bit input, so if you want to use Rec. 2020,
6 // you should probably stick to 10-bit, or accept somewhat reduced
7 // accuracy for 12-bit. Input depths above 8 bits are also generally
8 // less tested.
9 //
10 // We also only support “conventional non-constant luminance” for Rec. 2020,
11 // where Y' is derived from R'G'B' instead of RGB, since this is the same
12 // system as used in Rec. 601 and 709.
13
14 namespace movit {
15
16 enum MovitPixelFormat {
17         FORMAT_RGB,
18         FORMAT_RGBA_PREMULTIPLIED_ALPHA,
19         FORMAT_RGBA_POSTMULTIPLIED_ALPHA,
20         FORMAT_BGR,
21         FORMAT_BGRA_PREMULTIPLIED_ALPHA,
22         FORMAT_BGRA_POSTMULTIPLIED_ALPHA,
23         FORMAT_GRAYSCALE
24 };
25
26 enum Colorspace {
27         COLORSPACE_INVALID = -1,  // For internal use.
28         COLORSPACE_sRGB = 0,
29         COLORSPACE_REC_709 = 0,  // Same as sRGB.
30         COLORSPACE_REC_601_525 = 1,
31         COLORSPACE_REC_601_625 = 2,
32         COLORSPACE_XYZ = 3,  // Mostly useful for testing and debugging.
33         COLORSPACE_REC_2020 = 4,
34 };
35
36 enum GammaCurve {
37         GAMMA_INVALID = -1,  // For internal use.
38         GAMMA_LINEAR = 0,
39         GAMMA_sRGB = 1,
40         GAMMA_REC_601 = 2,
41         GAMMA_REC_709 = 2,  // Same as Rec. 601.
42         GAMMA_REC_2020_10_BIT = 2,  // Same as Rec. 601.
43         GAMMA_REC_2020_12_BIT = 3,
44 };
45
46 enum YCbCrLumaCoefficients {
47         YCBCR_REC_601 = 0,
48         YCBCR_REC_709 = 1,
49         YCBCR_REC_2020 = 2,
50 };
51
52 struct ImageFormat {
53         Colorspace color_space;
54         GammaCurve gamma_curve;
55 };
56
57 }  // namespace movit
58
59 #endif  // !defined(_MOVIT_IMAGE_FORMAT_H)