X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Ftimestretchrt%2Ftimestretchrt.C;h=1761782b3fd98fe9b0d6dcbd430427f480df9762;hb=8b0e73a6d3623764c261f64f5f3e96349d1f9032;hp=84a865789abc958e7033c93b79af4ed09d3d3dde;hpb=723142d62d61cde588e961426440f839ca9dcda9;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/timestretchrt/timestretchrt.C b/cinelerra-5.1/plugins/timestretchrt/timestretchrt.C index 84a86578..1761782b 100644 --- a/cinelerra-5.1/plugins/timestretchrt/timestretchrt.C +++ b/cinelerra-5.1/plugins/timestretchrt/timestretchrt.C @@ -323,7 +323,7 @@ void TimeStretchRT::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("TIMESTRETCHRT"); output.tag.set_property("NUM", config.num); output.tag.set_property("DENOM", config.denom); @@ -339,7 +339,7 @@ void TimeStretchRT::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()) {