]> git.sesse.net Git - movit/blobdiff - ycbcr_input.h
Support different chroma positioning for Cb and Cr. The test is slightly shaky, so...
[movit] / ycbcr_input.h
index 6c33cec9ef4525b0d77e479dc76af7dce2fb8777..fba558888ac20c3dcd8616882825eff39ae53e85 100644 (file)
@@ -22,7 +22,8 @@ struct YCbCrFormat {
 
        // Positioning of the chroma samples. MPEG-1 and JPEG is (0.5, 0.5);
        // MPEG-2 and newer typically are (0.0, 0.5).
-       float chroma_x_position, chroma_y_position;
+       float cb_x_position, cb_y_position;
+       float cr_x_position, cr_y_position;
 };
 
 class YCbCrInput : public Input {