]> git.sesse.net Git - movit/blobdiff - unsharp_mask_effect.cpp
Factorize the code to compute sampling points for bilinear sampling into a shared...
[movit] / unsharp_mask_effect.cpp
index db8ccd21d767367c8b72d30b793310885ad11b59..545910f2af7519636ec91e32cfb1d586aa1694df 100644 (file)
@@ -31,7 +31,6 @@ void UnsharpMaskEffect::rewrite_graph(EffectChain *graph, Node *self)
 }
 
 bool UnsharpMaskEffect::set_float(const std::string &key, float value) {
-       printf("%s = %f\n", key.c_str(), value);
        if (key == "amount") {
                bool ok = mix->set_float("strength_first", 1.0f + value);
                return ok && mix->set_float("strength_second", -value);