]> git.sesse.net Git - movit/blobdiff - image_format.h
Make the blur use the resize functionality, which also unbreaks the in-between sampli...
[movit] / image_format.h
index 346cdef9a495e72e947eb3502d4996f429c297d2..2f7231780875e6ec58e740669439ec60b3a57c02 100644 (file)
@@ -17,8 +17,12 @@ enum GammaCurve {
        GAMMA_REC_709 = 2,  // Same as Rec. 601.
 };
 
+enum YCbCrLumaCoefficients {
+       YCBCR_REC_601 = 0,
+       YCBCR_REC_709 = 1,
+};
+
 struct ImageFormat {
-       MovitPixelFormat pixel_format;
        ColorSpace color_space;
        GammaCurve gamma_curve;
 };