thirdparty lib CV build script mods
[goodguy/history.git] / cinelerra-5.0 / plugins / unsharp / unsharp.C
index 4604b3bfcb9d9318037921a420f3ed588814baed..186e24a5ecd62a09e0bdaa656d742a60ee6185ec 100644 (file)
@@ -102,7 +102,7 @@ UnsharpMain::~UnsharpMain()
        delete engine;
 }
 
-const char* UnsharpMain::plugin_title() { return N_("Unsharp"); }
+const char* UnsharpMain::plugin_title() { return _("Unsharp"); }
 int UnsharpMain::is_realtime() { return 1; }
 
 
@@ -181,7 +181,7 @@ int UnsharpMain::process_buffer(VFrame *frame,
 
        if(!engine) engine = new UnsharpEngine(this, 
                get_project_smp() + 1, get_project_smp() + 1);
-       read_frame(frame, 0, get_source_position(), get_framerate());
+       read_frame(frame, 0, get_source_position(), get_framerate(), 0);
        engine->do_unsharp(frame);
        return 0;
 }