X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Ftranslate%2Ftranslate.C;h=e69f8087b4249e05c5c30ba0e6db69ba4465b187;hb=047485402c380ee034045712121c649ddf89eda4;hp=7d00ee28d8c9351373ae8d541d5b8d32d2cf305d;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/translate/translate.C b/cinelerra-5.1/plugins/translate/translate.C index 7d00ee28..e69f8087 100644 --- a/cinelerra-5.1/plugins/translate/translate.C +++ b/cinelerra-5.1/plugins/translate/translate.C @@ -112,7 +112,7 @@ TranslateMain::~TranslateMain() overlayer = 0; } -const char* TranslateMain::plugin_title() { return _("Translate"); } +const char* TranslateMain::plugin_title() { return N_("Translate"); } int TranslateMain::is_realtime() { return 1; } @@ -193,12 +193,8 @@ int TranslateMain::process_realtime(VFrame *input_ptr, VFrame *output_ptr) temp_frame = 0; } if(!temp_frame) - temp_frame = new VFrame(0, - -1, - input_ptr->get_w(), - input_ptr->get_h(), - input->get_color_model(), - -1); + temp_frame = new VFrame(input_ptr->get_w(), input_ptr->get_h(), + input->get_color_model(), 0); temp_frame->copy_from(input); input = temp_frame; }