add binfolder path relative filters, fix gbrp color model, vwdw timebar tweaks, title...
[goodguy/history.git] / cinelerra-5.1 / plugins / translate / translate.C
index 7d00ee28d8c9351373ae8d541d5b8d32d2cf305d..e69f8087b4249e05c5c30ba0e6db69ba4465b187 100644 (file)
@@ -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;
        }