From 3f99c6f25968e41565811381a45f9140750610ac Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 28 May 2025 15:00:50 +0200 Subject: [PATCH] filter-graph: use new map/unmap URIs Don't use the legacy ones. --- spa/plugins/filter-graph/lv2_plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spa/plugins/filter-graph/lv2_plugin.c b/spa/plugins/filter-graph/lv2_plugin.c index 0173ab4b4..418f0674b 100644 --- a/spa/plugins/filter-graph/lv2_plugin.c +++ b/spa/plugins/filter-graph/lv2_plugin.c @@ -177,11 +177,11 @@ static struct context *context_new(void) c->map.handle = &c->uri_table; c->map.map = uri_table_map; - c->map_feature.URI = LV2_URID_MAP_URI; + c->map_feature.URI = LV2_URID__map; c->map_feature.data = &c->map; c->unmap.handle = &c->uri_table; c->unmap.unmap = uri_table_unmap; - c->unmap_feature.URI = LV2_URID_UNMAP_URI; + c->unmap_feature.URI = LV2_URID__unmap; c->unmap_feature.data = &c->unmap; c->atom_Int = context_map(c, LV2_ATOM__Int);