X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fplugins%2Funsharp%2Funsharp.C;h=186e24a5ecd62a09e0bdaa656d742a60ee6185ec;hb=0fb566814c8a2948506be87ea7ecd08128ae119b;hp=4604b3bfcb9d9318037921a420f3ed588814baed;hpb=2d99bb8ce591f05a31464b517d85dc2bc35b2abe;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/plugins/unsharp/unsharp.C b/cinelerra-5.0/plugins/unsharp/unsharp.C index 4604b3bf..186e24a5 100644 --- a/cinelerra-5.0/plugins/unsharp/unsharp.C +++ b/cinelerra-5.0/plugins/unsharp/unsharp.C @@ -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; }