dynamic keyframes, textbox rework, andrea ffmpeg.opts, perpetual chkpt undo, lv2...
[goodguy/history.git] / cinelerra-5.1 / plugins / shiftinterlace / shiftinterlace.C
index 90722d6f52957206c793cfe176aa49d29511886d..e4cf3c4af49df0774ac34d0ac99efbecfa7031e7 100644 (file)
@@ -277,7 +277,7 @@ void ShiftInterlaceMain::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("SHIFTINTERLACE");
        output.tag.set_property("ODD_OFFSET", config.odd_offset);
        output.tag.set_property("EVEN_OFFSET", config.even_offset);
@@ -293,7 +293,7 @@ void ShiftInterlaceMain::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;