From baddfc8f54b34585b19323516d2e48d4d8f33759 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 4 May 2010 04:37:32 +0000 Subject: LV2Object => LV2Atom. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2563 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/events/RequestMetadata.cpp | 4 ++-- src/engine/events/SetPortValue.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/engine/events') diff --git a/src/engine/events/RequestMetadata.cpp b/src/engine/events/RequestMetadata.cpp index 850ecc3d..0a705612 100644 --- a/src/engine/events/RequestMetadata.cpp +++ b/src/engine/events/RequestMetadata.cpp @@ -18,7 +18,7 @@ #include "raul/IntrusivePtr.hpp" #include "interface/ClientInterface.hpp" #include "events/RequestMetadata.hpp" -#include "shared/LV2Object.hpp" +#include "shared/LV2Atom.hpp" #include "shared/LV2URIMap.hpp" #include "AudioBuffer.hpp" #include "ClientBroadcaster.hpp" @@ -101,7 +101,7 @@ RequestMetadata::execute(ProcessContext& context) } else { IntrusivePtr obuf = PtrCast(port->buffer(0)); if (obuf) { - LV2Object::to_atom(*_engine.world()->uris().get(), obuf->atom(), _value); + LV2Atom::to_atom(*_engine.world()->uris().get(), obuf->atom(), _value); } } } else { diff --git a/src/engine/events/SetPortValue.cpp b/src/engine/events/SetPortValue.cpp index 6488fd6c..67c2a31b 100644 --- a/src/engine/events/SetPortValue.cpp +++ b/src/engine/events/SetPortValue.cpp @@ -20,7 +20,7 @@ #include "event.lv2/event.h" #include "shared/LV2URIMap.hpp" #include "shared/LV2Features.hpp" -#include "shared/LV2Object.hpp" +#include "shared/LV2Atom.hpp" #include "module/World.hpp" #include "AudioBuffer.hpp" #include "ClientBroadcaster.hpp" @@ -176,7 +176,7 @@ SetPortValue::apply(Context& context) ObjectBuffer* const obuf = dynamic_cast(buf); if (obuf) { obuf->atom()->size = obuf->size() - sizeof(LV2_Atom); - if (LV2Object::from_atom(uris, _value, obuf->atom())) { + if (LV2Atom::from_atom(uris, _value, obuf->atom())) { debug << "Converted atom " << _value << " :: " << obuf->atom()->type << " * " << obuf->atom()->size << " @ " << obuf->atom() << endl; return; -- cgit v1.2.1