]> git.sesse.net Git - movit/commitdiff
Loosen up some restrictions on YCbCrInput if we have interleaved mode.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 19 Feb 2017 10:02:09 +0000 (11:02 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 19 Feb 2017 10:02:09 +0000 (11:02 +0100)
ycbcr_input.h

index 4e8f194f1e2812c3d0b016cd761bae3007112a82..712035ce3444927faac0e7d7209e7ebe9e3db389 100644 (file)
@@ -75,7 +75,8 @@ public:
        unsigned get_height() const { return height; }
        Colorspace get_color_space() const { return image_format.color_space; }
        GammaCurve get_gamma_curve() const { return image_format.gamma_curve; }
-       virtual bool can_supply_mipmaps() const { return false; }
+       virtual bool can_supply_mipmaps() const { return ycbcr_input_splitting == YCBCR_INPUT_INTERLEAVED; }
+       virtual bool is_single_texture() const { return ycbcr_input_splitting == YCBCR_INPUT_INTERLEAVED; }
 
        // Tells the input where to fetch the actual pixel data. Note that if you change
        // this data, you must either call set_pixel_data() again (using the same pointer