diff options
Diffstat (limited to 'src/libs/engine/LV2Info.cpp')
-rw-r--r-- | src/libs/engine/LV2Info.cpp | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/libs/engine/LV2Info.cpp b/src/libs/engine/LV2Info.cpp index d1af757f..43d87d24 100644 --- a/src/libs/engine/LV2Info.cpp +++ b/src/libs/engine/LV2Info.cpp @@ -32,15 +32,22 @@ LV2Info::LV2Info(SLV2World world) , audio_class(slv2_value_new_uri(world, SLV2_PORT_CLASS_AUDIO)) , event_class(slv2_value_new_uri(world, SLV2_PORT_CLASS_EVENT)) , next_uri_id(1) - , lv2_features(new LV2_Feature*[2]) + , lv2_features(new LV2_Feature*[3]) { uri_map_feature_data.uri_to_id = &LV2Info::uri_map_uri_to_id; uri_map_feature_data.callback_data = this; uri_map_feature.URI = LV2_URI_MAP_URI; uri_map_feature.data = &uri_map_feature_data; + event_feature_data.lv2_event_ref= &LV2Info::event_ref; + event_feature_data.lv2_event_unref= &LV2Info::event_ref; + event_feature_data.callback_data = this; + event_feature.URI = LV2_EVENT_URI; + event_feature.data = &event_feature_data; + lv2_features[0] = &uri_map_feature; - lv2_features[1] = NULL; + lv2_features[1] = &event_feature; + lv2_features[2] = NULL; /* this is needed so we get a fixed type ID for MIDI, it would probably be better to make the type map accessible from any @@ -86,4 +93,12 @@ LV2Info::uri_map_uri_to_id(LV2_URI_Map_Callback_Data callback_data, } +uint32_t +LV2Info::event_ref(LV2_Event_Callback_Data callback_data, + LV2_Event* event) { + +} + + + } // namespace Ingen |