summaryrefslogtreecommitdiff
path: root/rotord/src/rendercontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/src/rendercontext.h')
-rw-r--r--rotord/src/rendercontext.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/rotord/src/rendercontext.h b/rotord/src/rendercontext.h
index 8656df4..130c678 100644
--- a/rotord/src/rendercontext.h
+++ b/rotord/src/rendercontext.h
@@ -61,7 +61,8 @@ namespace Rotor {
Render_context(const std::string& name): Task(name) {
state=IDLE;
output_framerate=25.0f;
-
+ start=0;
+ stop=999999;
xmlIO xml;
if(xml.loadFile("settings.xml") ){
graph_dir=xml.getAttribute("Rotor","graph_dir","",0);
@@ -108,7 +109,7 @@ namespace Rotor {
Audio_thumbnailer *audio_thumb;
Graph graph;
float output_framerate;
-
+ int start,stop;
};
}