fix segv in neophyte theme about_bg
[goodguy/history.git] / cinelerra-5.1 / plugins / zoomblur / zoomblur.C
index d26928e5d1ed924528149aaa2846aa30ec5a8195..4499ea292c26bfdb2828f763815d313edd02e443 100644 (file)
@@ -399,7 +399,7 @@ ZoomBlurMain::~ZoomBlurMain()
        if(temp) delete temp;
 }
 
-const char* ZoomBlurMain::plugin_title() { return _("Zoom Blur"); }
+const char* ZoomBlurMain::plugin_title() { return N_("Zoom Blur"); }
 int ZoomBlurMain::is_realtime() { return 1; }
 
 
@@ -566,12 +566,8 @@ SET_TRACE
        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;