diff options
author | David Robillard <d@drobilla.net> | 2011-02-11 22:14:01 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-11 22:14:01 +0000 |
commit | 77d1d3ae2d861f76264020b112386cdd57ce1f86 (patch) | |
tree | ca40355d145c09b43b2e15961a3e05aab280947c /src/engine/LADSPANode.hpp | |
parent | 796f8d48f0ff6434635237038e03f900161ce331 (diff) | |
download | ingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.tar.gz ingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.tar.bz2 ingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.zip |
Remove LADSPA support from Ingen (LADSPA can be used via NASPRO).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2922 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/LADSPANode.hpp')
-rw-r--r-- | src/engine/LADSPANode.hpp | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/src/engine/LADSPANode.hpp b/src/engine/LADSPANode.hpp deleted file mode 100644 index ad1773d9..00000000 --- a/src/engine/LADSPANode.hpp +++ /dev/null @@ -1,91 +0,0 @@ -/* This file is part of Ingen. - * Copyright (C) 2007-2009 David Robillard <http://drobilla.net> - * - * Ingen is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 2 of the License, or (at your option) any later - * version. - * - * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef INGEN_ENGINE_LADSPANODE_HPP -#define INGEN_ENGINE_LADSPANODE_HPP - -#include <string> -#include <ladspa.h> -#include <boost/optional.hpp> -#include "raul/IntrusivePtr.hpp" -#include "types.hpp" -#include "NodeImpl.hpp" -#include "PluginImpl.hpp" - -namespace Ingen { - - -/** An instance of a LADSPA plugin. - * - * \ingroup engine - */ -class LADSPANode : public NodeImpl -{ -public: - LADSPANode(PluginImpl* plugin, - const std::string& name, - bool polyphonic, - PatchImpl* parent, - const LADSPA_Descriptor* descriptor, - SampleRate srate); - - ~LADSPANode(); - - bool instantiate(BufferFactory& bufs); - - bool prepare_poly(BufferFactory& bufs, uint32_t poly); - bool apply_poly(Raul::Maid& maid, uint32_t poly); - - void activate(BufferFactory& bufs); - void deactivate(); - - void process(ProcessContext& context); - - void set_port_buffer(uint32_t voice, uint32_t port_num, - IntrusivePtr<Buffer> buf, SampleCount offset); - -protected: - inline LADSPA_Handle instance(uint32_t voice) { return (*_instances)[voice]->handle; } - - void get_port_limits(unsigned long port_index, - boost::optional<Sample>& default_value, - boost::optional<Sample>& lower_bound, - boost::optional<Sample>& upper_bound); - - struct Instance { - Instance(const LADSPA_Descriptor* d=NULL, LADSPA_Handle h=NULL) - : descriptor(d), handle(h) - {} - ~Instance() { - if (descriptor && handle) - descriptor->cleanup(handle); - } - const LADSPA_Descriptor* descriptor; - LADSPA_Handle handle; - }; - - typedef Raul::Array< SharedPtr<Instance> > Instances; - - const LADSPA_Descriptor* _descriptor; - Instances* _instances; - Instances* _prepared_instances; -}; - - -} // namespace Ingen - -#endif // INGEN_ENGINE_LADSPANODE_HPP |