build version update
[goodguy/history.git] / cinelerra-5.1 / plugins / svg / svg.C
index af4a79d467df526af7fd7f33a77117c1ba3affaa..89499d15c7bb9c4d5ae5c6308ba29f8248467125 100644 (file)
@@ -97,7 +97,7 @@ SvgMain::~SvgMain()
        delete overlayer;
 }
 
-const char* SvgMain::plugin_title() { return _("SVG via Inkscape"); }
+const char* SvgMain::plugin_title() { return N_("SVG via Inkscape"); }
 int SvgMain::is_realtime() { return 1; }
 int SvgMain::is_synthesis() { return 1; }
 
@@ -194,7 +194,7 @@ int SvgMain::process_realtime(VFrame *input, VFrame *output)
                        close(fd);
                        if( ofrm && ofrm->get_color_model() != output->get_color_model() ) {
                                VFrame *vfrm = new VFrame(ofrm->get_w(), ofrm->get_h(),
-                                       output->get_color_model());
+                                       output->get_color_model(), 0);
                                vfrm->transfer_from(ofrm);
                                delete ofrm;  ofrm = vfrm;
                        }