diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-09-04 16:41:30 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-09-04 16:41:30 +0100 |
| commit | a2e1bf3495b7bfefdaedb8fc737e969ab06df079 (patch) | |
| tree | b42ca849b4fe562a3942a8f29beaf315417b9f40 /rotord/src/graph.cpp | |
| parent | be19f5a21dc1fe717711d76f500f6bfe0c4d166b (diff) | |
cycler cut to next available slot
Diffstat (limited to 'rotord/src/graph.cpp')
| -rw-r--r-- | rotord/src/graph.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/rotord/src/graph.cpp b/rotord/src/graph.cpp index ae9247b..ef5fd87 100644 --- a/rotord/src/graph.cpp +++ b/rotord/src/graph.cpp @@ -78,13 +78,13 @@ bool Graph::preview(xmlIO &XML,string &node,string &_format,int frame,int w,int } bool Graph::video_render(const string &output_filename,const float framerate,float& progress) { - vector<Node*> loaders=find_nodes("video_loader"); - for (auto i:loaders){ - if (!dynamic_cast<Video_loader*>(i)->isLoaded) { - cerr<<"Rotor: all loaders must be populated before rendering"<<endl; - return false; - } - } + //vector<Node*> loaders=find_nodes("video_loader"); + //for (auto i:loaders){ + // if (!dynamic_cast<Video_loader*>(i)->isLoaded) { + // cerr<<"Rotor: all loaders must be populated before rendering"<<endl; + // return false; + // } + //} if (find_node("video_output")) { Video_output *video_output=dynamic_cast<Video_output*>(find_node("video_output")); for (auto f: find_nodes("video_feedback")){ |
