bsd compatibility mods
[goodguy/history.git] / cinelerra-5.1 / plugins / linearblur / linearblur.C
index 8f6cab2feb3a43f45b0a34ddb085f90098930c9b..5f646b3e29f0525c32a0a3625a656bad5ec550f9 100644 (file)
@@ -388,7 +388,7 @@ LinearBlurMain::~LinearBlurMain()
        if(temp) delete temp;
 }
 
-const char* LinearBlurMain::plugin_title() { return _("Linear Blur"); }
+const char* LinearBlurMain::plugin_title() { return N_("Linear Blur"); }
 int LinearBlurMain::is_realtime() { return 1; }
 
 
@@ -518,12 +518,9 @@ int LinearBlurMain::process_buffer(VFrame *frame,
        this->output = frame;
 
 
-       if(!temp) temp = new VFrame(0,
-               -1,
-               frame->get_w(),
-               frame->get_h(),
-               frame->get_color_model(),
-               -1);
+       if(!temp)
+               temp = new VFrame(frame->get_w(), frame->get_h(),
+                       frame->get_color_model(), 0);
        temp->copy_from(frame);
        this->input = temp;