diff options
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")){ |
