diff options
author | David Robillard <d@drobilla.net> | 2015-10-24 19:27:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-24 19:27:39 +0000 |
commit | 732bfb33105b4a534bc17caae9a50a1ccfcd7570 (patch) | |
tree | bad9715a99f11d17342adaef372361c3697beee9 /ingen | |
parent | ade7143eb2af64fd6743a64ebf1786dd5bbe1092 (diff) | |
download | ingen-732bfb33105b4a534bc17caae9a50a1ccfcd7570.tar.gz ingen-732bfb33105b4a534bc17caae9a50a1ccfcd7570.tar.bz2 ingen-732bfb33105b4a534bc17caae9a50a1ccfcd7570.zip |
Zero-copy to/from driver ports where possible
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5778 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/AtomReader.hpp | 2 | ||||
-rw-r--r-- | ingen/URIs.hpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ingen/AtomReader.hpp b/ingen/AtomReader.hpp index bab50433..370286d8 100644 --- a/ingen/AtomReader.hpp +++ b/ingen/AtomReader.hpp @@ -45,7 +45,7 @@ public: Interface& iface); ~AtomReader() {} - static bool is_message(URIs& uris, const LV2_Atom* msg); + static bool is_message(const URIs& uris, const LV2_Atom* msg); bool write(const LV2_Atom* msg); diff --git a/ingen/URIs.hpp b/ingen/URIs.hpp index a76e6dce..7e3af808 100644 --- a/ingen/URIs.hpp +++ b/ingen/URIs.hpp @@ -91,7 +91,6 @@ public: const Quark atom_String; const Quark atom_URI; const Quark atom_URID; - const Quark atom_Vector; const Quark atom_bufferType; const Quark atom_eventTransfer; const Quark atom_supports; |