summaryrefslogtreecommitdiff
path: root/lv2/input_lv2.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2015-02-07 15:39:56 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2015-02-07 15:39:56 +0100
commite667c861ce6c22a055c9afdf01d80247df18ae9b (patch)
treee5a73720db4fea42d0788513bc7cd23ae7208c9b /lv2/input_lv2.cc
parent25fbccf770d4e68950311a434c810af3a98f127f (diff)
LV2: Port to new urid map extension. Major cleanup.
Diffstat (limited to 'lv2/input_lv2.cc')
-rw-r--r--lv2/input_lv2.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/lv2/input_lv2.cc b/lv2/input_lv2.cc
index d995e75..7c3c6ec 100644
--- a/lv2/input_lv2.cc
+++ b/lv2/input_lv2.cc
@@ -99,11 +99,6 @@ event_t *InputLV2::run(size_t pos, size_t len, size_t *nevents)
list[listsize].offset = ev->time.frames;
listsize++;
}
- /*
- start_frame = ev->frames;
- plugin->frame = 0;
- plugin->play = true;
- */
}
ev = lv2_atom_sequence_next(ev);
}
@@ -115,20 +110,3 @@ event_t *InputLV2::run(size_t pos, size_t len, size_t *nevents)
void InputLV2::post()
{
}
-
-#ifdef TEST_INPUT_LV2
-//Additional dependency files
-//deps:
-//Required cflags (autoconf vars may be used)
-//cflags:
-//Required link options (autoconf vars may be used)
-//libs:
-#include "test.h"
-
-TEST_BEGIN;
-
-// TODO: Put some testcode here (see test.h for usable macros).
-
-TEST_END;
-
-#endif/*TEST_INPUT_LV2*/