]> git.sesse.net Git - movit/blobdiff - ycbcr_input.h
Fix a bug where intermediate phase outputs could get too low height.
[movit] / ycbcr_input.h
index 6c33cec9ef4525b0d77e479dc76af7dce2fb8777..492230febf4abd92edc8c7a322a967a32f7866dd 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 {
@@ -40,6 +41,7 @@ public:
        void finalize();
 
        virtual bool can_output_linear_gamma() const { return false; }
+       virtual AlphaHandling alpha_handling() const { return OUTPUT_BLANK_ALPHA; }
 
        std::string output_fragment_shader();