From: Steinar H. Gunderson Date: Fri, 1 Feb 2013 00:02:55 +0000 (+0100) Subject: Give SizeStoringEffect an effect_type_id(), for easier debugging of the unit test. X-Git-Tag: 1.0~145 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=682b1da129e2f61109d83463cec344bde7392e9a Give SizeStoringEffect an effect_type_id(), for easier debugging of the unit test. --- diff --git a/effect_chain_test.cpp b/effect_chain_test.cpp index c17ec89..51412c0 100644 --- a/effect_chain_test.cpp +++ b/effect_chain_test.cpp @@ -767,6 +767,7 @@ public: input_width = width; input_height = height; } + virtual std::string effect_type_id() const { return "SizeStoringEffect"; } int input_width, input_height; };