mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
filter-graph: use new map/unmap URIs
Don't use the legacy ones.
This commit is contained in:
parent
51d9bdd9cb
commit
3f99c6f259
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue