edl plugin names eng, fix segv for opengl brender, renderfarm rework strategy, perf...
[goodguy/history.git] / cinelerra-5.1 / plugins / yuv411 / yuv411.C
index 6b3900b5fde127cbf6d450cca9e3ba1ea019448b..79ca1859529a5f47b80814d94afba66ad5d44837 100644 (file)
@@ -70,7 +70,7 @@ yuv411Main::~yuv411Main()
        delete temp_frame;
 }
 
-const char *yuv411Main::plugin_title() { return _("YUV411"); }
+const char *yuv411Main::plugin_title() { return N_("YUV411"); }
 int yuv411Main::is_realtime() { return 1; }
 
 #define YUV411_MACRO(type, components) \
@@ -166,7 +166,7 @@ int yuv411Main::process_realtime(VFrame *input_ptr, VFrame *output_ptr)
                        temp_frame = 0;
                }
                if( !temp_frame )
-                       temp_frame = new VFrame(w, h, colormodel);
+                       temp_frame = new VFrame(w, h, colormodel, 0);
                if( input_ptr == output_ptr ) {
                        temp_frame->copy_from(input_ptr);
                        input_ptr = temp_frame;