X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fzoomblur%2Fzoomblur.C;h=4499ea292c26bfdb2828f763815d313edd02e443;hb=bd0694fcee6080ec61e243ac6f278be5a48d564b;hp=d26928e5d1ed924528149aaa2846aa30ec5a8195;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/zoomblur/zoomblur.C b/cinelerra-5.1/plugins/zoomblur/zoomblur.C index d26928e5..4499ea29 100644 --- a/cinelerra-5.1/plugins/zoomblur/zoomblur.C +++ b/cinelerra-5.1/plugins/zoomblur/zoomblur.C @@ -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;