dynamic keyframes, textbox rework, andrea ffmpeg.opts, perpetual chkpt undo, lv2...
[goodguy/history.git] / cinelerra-5.1 / plugins / 720to480 / 720to480.C
index fda3e1d016bd6acba29f72ccb146b9b06495492c..c1af6c277d61083dc1420bf9e2234be63b332ff8 100644 (file)
@@ -361,7 +361,7 @@ int _720to480Main::process_loop(VFrame *output)
 void _720to480Main::save_data(KeyFrame *keyframe)
 {
        FileXML output;
-       output.set_shared_output(keyframe->get_data(), MESSAGESIZE);
+       output.set_shared_output(keyframe->xbuf);
        output.tag.set_title("720TO480");
        output.tag.set_property("FIRST_FIELD", config.first_field);
        output.tag.set_property("DIRECTION", config.direction);
@@ -375,7 +375,7 @@ void _720to480Main::save_data(KeyFrame *keyframe)
 void _720to480Main::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())
        {