]> git.sesse.net Git - movit/blob - image_format.h
Add support for fp16 and RG textures to FlatInput.
[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         FORMAT_RG
25 };
26
27 enum Colorspace {
28         COLORSPACE_INVALID = -1,  // For internal use.
29         COLORSPACE_sRGB = 0,
30         COLORSPACE_REC_709 = 0,  // Same as sRGB.
31         COLORSPACE_REC_601_525 = 1,
32         COLORSPACE_REC_601_625 = 2,
33         COLORSPACE_XYZ = 3,  // Mostly useful for testing and debugging.
34         COLORSPACE_REC_2020 = 4,
35 };
36
37 enum GammaCurve {
38         GAMMA_INVALID = -1,  // For internal use.
39         GAMMA_LINEAR = 0,
40         GAMMA_sRGB = 1,
41         GAMMA_REC_601 = 2,
42         GAMMA_REC_709 = 2,  // Same as Rec. 601.
43         GAMMA_REC_2020_10_BIT = 2,  // Same as Rec. 601.
44         GAMMA_REC_2020_12_BIT = 3,
45 };
46
47 enum YCbCrLumaCoefficients {
48         YCBCR_REC_601 = 0,
49         YCBCR_REC_709 = 1,
50         YCBCR_REC_2020 = 2,
51 };
52
53 struct ImageFormat {
54         Colorspace color_space;
55         GammaCurve gamma_curve;
56 };
57
58 }  // namespace movit
59
60 #endif  // !defined(_MOVIT_IMAGE_FORMAT_H)