]> git.sesse.net Git - movit/blobdiff - effect_chain.h
In resizing effects, add the notion of a “virtual output size”.
[movit] / effect_chain.h
index 88d5d3202faba525f4bb0a92af9bee70e14d7055..bfe52c0dc6ddaf41d590557b984aabf2effa7d4a 100644 (file)
@@ -72,7 +72,7 @@ struct Phase {
        std::vector<Node *> inputs;
 
        std::vector<Node *> effects;  // In order.
-       unsigned output_width, output_height;
+       unsigned output_width, output_height, virtual_output_width, virtual_output_height;
 };
 
 class EffectChain {