aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg04-sampler.lv2/uris.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-01-24 00:55:35 +0000
committerDavid Robillard <d@drobilla.net>2014-01-24 00:55:35 +0000
commit1cb9f77d07c998108d0ba54811ac4604a2b49725 (patch)
tree9816ff3058bcc18af86cb785bdac4857c1000181 /plugins/eg04-sampler.lv2/uris.h
parentc12e45895f93e7bf3b42c43cf45208b28208a252 (diff)
downloadlv2-1cb9f77d07c998108d0ba54811ac4604a2b49725.tar.xz
atom: Deprecate Blank and Resource in favour of just Object.
atom: Add lv2_atom_forge_is_object_type() and lv2_atom_forge_is_blank() to ease backwards compatibility. atom: Add lv2_atom_forge_key() for terser object writing. patch: Add patch:sequenceNumber for associating replies with requests. lv2specgen: Display deprecated warning on classes marked owl:deprecated.
Diffstat (limited to 'plugins/eg04-sampler.lv2/uris.h')
-rw-r--r--plugins/eg04-sampler.lv2/uris.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/plugins/eg04-sampler.lv2/uris.h b/plugins/eg04-sampler.lv2/uris.h
index 1c00280..c981f9e 100644
--- a/plugins/eg04-sampler.lv2/uris.h
+++ b/plugins/eg04-sampler.lv2/uris.h
@@ -61,13 +61,6 @@ map_sampler_uris(LV2_URID_Map* map, SamplerURIs* uris)
uris->patch_value = map->map(map->handle, LV2_PATCH__value);
}
-static inline bool
-is_object_type(const SamplerURIs* uris, LV2_URID type)
-{
- return type == uris->atom_Resource
- || type == uris->atom_Blank;
-}
-
/**
* Write a message like the following to @p forge:
* []
@@ -82,8 +75,8 @@ write_set_file(LV2_Atom_Forge* forge,
const size_t filename_len)
{
LV2_Atom_Forge_Frame frame;
- LV2_Atom* set = (LV2_Atom*)lv2_atom_forge_blank(
- forge, &frame, 1, uris->patch_Set);
+ LV2_Atom* set = (LV2_Atom*)lv2_atom_forge_object(
+ forge, &frame, 0, uris->patch_Set);
lv2_atom_forge_property_head(forge, uris->patch_property, 0);
lv2_atom_forge_urid(forge, uris->eg_sample);