summaryrefslogtreecommitdiff
path: root/rotord/graph.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@herge.(none)>2013-05-03 18:25:26 +0100
committerTim Redfern <tim@herge.(none)>2013-05-03 18:25:26 +0100
commitff59340614ec150e4bd84d3554081e666970aef2 (patch)
treeb32689f18b0457580ecf1c7934edd69142a9e005 /rotord/graph.cpp
parent4aa8f7c20c5e8bbe1ed9b007a1193ced8b019f4d (diff)
elusive hang while rendering
Diffstat (limited to 'rotord/graph.cpp')
-rw-r--r--rotord/graph.cpp4
1 files changed, 2 insertions, 2 deletions
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<Video_output*>(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;
}