X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Freframert%2Freframert.C;h=b39fa6307567e43a5da97c826139531ff5b5677d;hb=refs%2Fheads%2Fmaster;hp=ac5b384679ac8932341314d3822b28959fe82a11;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/reframert/reframert.C b/cinelerra-5.1/plugins/reframert/reframert.C index ac5b3846..b39fa630 100644 --- a/cinelerra-5.1/plugins/reframert/reframert.C +++ b/cinelerra-5.1/plugins/reframert/reframert.C @@ -387,7 +387,7 @@ ReframeRT::~ReframeRT() } -const char* ReframeRT::plugin_title() { return _("ReframeRT"); } +const char* ReframeRT::plugin_title() { return N_("ReframeRT"); } int ReframeRT::is_realtime() { return 1; } int ReframeRT::is_synthesis() { return 1; } @@ -480,7 +480,7 @@ void ReframeRT::save_data(KeyFrame *keyframe) FileXML output; // cause data to be stored directly in text - output.set_shared_output(keyframe->get_data(), MESSAGESIZE); + output.set_shared_output(keyframe->xbuf); output.tag.set_title("REFRAMERT"); // for backwards compatability, we call num scale output.tag.set_property("SCALE", config.num); @@ -498,7 +498,7 @@ void ReframeRT::read_data(KeyFrame *keyframe) { FileXML input; - input.set_shared_input(keyframe->get_data(), strlen(keyframe->get_data())); + input.set_shared_input(keyframe->xbuf); while(!input.read_tag()) {