dynamic keyframes, textbox rework, andrea ffmpeg.opts, perpetual chkpt undo, lv2...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / pluginfclient.C
index 6ffcc1ed1e28516abcece7107c9afccdd44b50ca..fb0329dfcb593c70598ec8f52835927c12702b7e 100644 (file)
@@ -710,7 +710,7 @@ void PluginFClient::save_data(KeyFrame *keyframe)
        char string[BCTEXTLEN];
 
 // 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(to_upper(string, plugin_title()));
        const AVClass *filt_class = config.filter_class();
        if( filt_class && filt_class->option ) {
@@ -739,7 +739,7 @@ void PluginFClient::read_data(KeyFrame *keyframe)
 {
        FileXML input;
        char string[BCTEXTLEN];
-       input.set_shared_input(keyframe->get_data(), strlen(keyframe->get_data()));
+       input.set_shared_input(keyframe->xbuf);
 
        while( !input.read_tag() ) {
                to_upper(string, plugin_title());