From ff59340614ec150e4bd84d3554081e666970aef2 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Fri, 3 May 2013 18:25:26 +0100 Subject: elusive hang while rendering --- rotord/graph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rotord/graph.cpp') diff --git a/rotord/graph.cpp b/rotord/graph.cpp index fc9a129..2139f6c 100644 --- a/rotord/graph.cpp +++ b/rotord/graph.cpp @@ -29,10 +29,10 @@ bool Graph::signal_render(string &signal_xml,const float framerate) { } else return false; } -bool Graph::video_render(const string &output_filename,const string &audio_filename,const float framerate) { +bool Graph::video_render(const string &output_filename,const string &audio_filename,const float framerate,float& progress) { if (find_node("video_output")) { Video_output *video_output=dynamic_cast(find_node("video_output")); - return video_output->render(duration,framerate,output_filename,audio_filename); + return video_output->render(duration,framerate,output_filename,audio_filename,progress); } else return false; } -- cgit v1.2.3