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, 1 insertions, 4 deletions
diff --git a/rotord/src/rendercontext.h b/rotord/src/rendercontext.h
index d28cd82..bf7bb11 100644
--- a/rotord/src/rendercontext.h
+++ b/rotord/src/rendercontext.h
@@ -2,7 +2,6 @@
#define RENDERCONTEXT_H
#include "Poco/Task.h"
-#include "Poco/File.h"
#include "Poco/StringTokenizer.h"
#include "rotor.h"
@@ -53,7 +52,6 @@ namespace Rotor {
audio_thumb=new Audio_thumbnailer();
state=IDLE;
output_framerate=25.0f;
- audio_loaded=false;
xmlIO xml;
if(xml.loadFile("settings.xml") ){
@@ -91,7 +89,7 @@ namespace Rotor {
std::deque<Session_task> work_queue;
std::unordered_map<string,Render_status> renders;
Poco::Mutex mutex; //lock for access from parent thread
- std::string audio_filename;
+
std::string output_filename;
std::string graph_dir;
std::string media_dir;
@@ -101,7 +99,6 @@ namespace Rotor {
Graph graph;
Node_factory factory;
float output_framerate;
- bool audio_loaded;
};
}