| 124 | }; |
| 125 | |
| 126 | static std::shared_ptr<Frame> make_input_frame(int64_t number, int width = 2, int height = 1) { |
| 127 | auto frame = std::make_shared<Frame>(number, width, height, "#00000000"); |
| 128 | frame->GetImage()->fill(QColor(64, 64, 64, 255)); |
| 129 | return frame; |
| 130 | } |
| 131 | |
| 132 | TEST_CASE("EffectBase common mask blend applies to ProcessFrame", "[effect][mask][base]") { |
| 133 | auto frame = std::make_shared<Frame>(1, 4, 1, "#000000"); |