dynamic keyframes, textbox rework, andrea ffmpeg.opts, perpetual chkpt undo, lv2...
[goodguy/history.git] / cinelerra-5.1 / plugins / motion51 / motion51.C
index f29ea0bbff57099026887cc722cc84dbb3278c9f..b61e22442b91109f35c2fa69255a888a2b175374 100644 (file)
@@ -147,7 +147,7 @@ void Motion51Main::save_data(KeyFrame *keyframe)
        FileXML output;
 
 // cause data to be stored directly in text
        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("MOTION51");
        output.tag.set_property("HORIZ_LIMIT", config.horiz_limit);
        output.tag.set_property("VERT_LIMIT", config.vert_limit);
        output.tag.set_title("MOTION51");
        output.tag.set_property("HORIZ_LIMIT", config.horiz_limit);
        output.tag.set_property("VERT_LIMIT", config.vert_limit);
@@ -172,7 +172,7 @@ void Motion51Main::save_data(KeyFrame *keyframe)
 void Motion51Main::read_data(KeyFrame *keyframe)
 {
        FileXML input;
 void Motion51Main::read_data(KeyFrame *keyframe)
 {
        FileXML input;
-       input.set_shared_input(keyframe->get_data(), strlen(keyframe->get_data()));
+       input.set_shared_input(keyframe->xbuf);
        int result = 0;
 
        while( !(result = input.read_tag()) ) {
        int result = 0;
 
        while( !(result = input.read_tag()) ) {