summaryrefslogtreecommitdiff
path: root/rotord/rotord.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@herge.(none)>2013-02-22 15:17:08 +0000
committerTim Redfern <tim@herge.(none)>2013-02-22 15:17:08 +0000
commit6fee126dc8ed8cc7c961c683f17896450dd8de03 (patch)
treea3d68a43ddf6ed684a640ae2296c805720d4d5e9 /rotord/rotord.cpp
parent2cc106d2ca074a80d3e1c4a367951ea391f890d9 (diff)
loader for render context
Diffstat (limited to 'rotord/rotord.cpp')
-rw-r--r--rotord/rotord.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/rotord/rotord.cpp b/rotord/rotord.cpp
index e6460c6..f20b515 100644
--- a/rotord/rotord.cpp
+++ b/rotord/rotord.cpp
@@ -106,6 +106,17 @@ HTTPRequestHandler* RotorRequestHandlerFactory::createRequestHandler(const HTTPS
// string outfilename, bool useFrames);
return 0;
}
+ else if (segments[0]=="new") {
+ // website creating a new render context
+
+
+ //Settings(string _so="",string _filter="",string _id="",string _input="");
+ return new AudioAnalyserHandler(vampHost::Settings(segments[1],segments[2],segments[3]));
+ //string audioData=runPlugin(string myname, string soname, string id,
+ // string output, int outputNo, string wavname,
+ // string outfilename, bool useFrames);
+ return 0;
+ }
else {
return 0;
}