update wavesaudio backend, now supports Windows (ASIO) as well as OS X (CoreAudio)
[ardour.git] / libs / backends / wavesaudio / waves_dataport.h
index fd8dd8090bf219b9e131ea1b3473cbacd51df344..d8b095351cfb01895d34cc66a218556b6bc777df 100644 (file)
-/*\r
-    Copyright (C) 2014 Waves Audio Ltd.\r
-\r
-    This program is free software; you can redistribute it and/or modify\r
-    it under the terms of the GNU General Public License as published by\r
-    the Free Software Foundation; either version 2 of the License, or\r
-    (at your option) any later version.\r
-\r
-    This program is distributed in the hope that it will be useful,\r
-    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-    GNU General Public License for more details.\r
-\r
-    You should have received a copy of the GNU General Public License\r
-    along with this program; if not, write to the Free Software\r
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
-\r
-*/\r
-\r
-#ifndef __libardour_waves_dataport_h__\r
-#define __libardour_waves_dataport_h__\r
-\r
-#include "ardour/types.h"\r
-#include "memory.h"\r
-        \r
-namespace ARDOUR {\r
-\r
-class WavesDataPort {\r
-public:\r
-\r
-    virtual ~WavesDataPort ();\r
-\r
-    inline const std::string& name () const\r
-    {\r
-        return _name;\r
-    }\r
-    \r
-    int set_name (const std::string &name)\r
-    {\r
-        _name = name;\r
-        return 0;\r
-    }\r
-\r
-    virtual DataType type () const = 0;\r
-\r
-    inline PortFlags flags () const\r
-    {\r
-        return _flags;\r
-    }\r
-\r
-    inline bool is_input () { return flags () & IsInput; }\r
-    inline bool is_output () { return flags () & IsOutput; }\r
-    inline bool is_physical () { return flags () & IsPhysical; }\r
-    inline bool is_terminal () { return flags () & IsTerminal; }\r
-    inline operator void* () { return (void*)this; }\r
-\r
-    inline const LatencyRange& latency_range (bool for_playback) const\r
-    {\r
-        return for_playback ? _playback_latency_range : _capture_latency_range;\r
-    }\r
-\r
-    inline void set_latency_range (const LatencyRange &latency_range, bool for_playback)\r
-    {\r
-        if (for_playback)\r
-        {\r
-            _playback_latency_range = latency_range;\r
-        }\r
-        else\r
-        {\r
-            _capture_latency_range = latency_range;\r
-        }\r
-    }\r
-\r
-    int connect (WavesDataPort *port);\r
-    \r
-    int disconnect (WavesDataPort *port);\r
-    \r
-    void disconnect_all ();\r
-\r
-    bool inline is_connected (const WavesDataPort *port) const\r
-    {\r
-        return std::find (_connections.begin (), _connections.end (), port) != _connections.end ();\r
-    }\r
-\r
-    bool inline is_connected () const\r
-    {\r
-        return _connections.size () != 0;\r
-    }\r
-\r
-    bool is_physically_connected () const;\r
-\r
-    inline const std::vector<WavesDataPort *>& get_connections () const { return _connections; }\r
-\r
-    virtual void* get_buffer (pframes_t nframes) = 0;\r
-\r
-protected:\r
-    WavesDataPort (const std::string& inport_name, PortFlags inflags);\r
-       virtual void _wipe_buffer() = 0;\r
-\r
-private:\r
-\r
-    std::string _name;\r
-    const PortFlags _flags;\r
-    LatencyRange _capture_latency_range;\r
-    LatencyRange  _playback_latency_range;\r
-    std::vector<WavesDataPort*> _connections;\r
-\r
-    void _connect (WavesDataPort* port, bool api_call);\r
-    void _disconnect (WavesDataPort* port, bool api_call);\r
-};\r
-\r
-} // namespace\r
-\r
-#endif /* __libardour_waves_dataport_h__ */\r
-    \r
+/*
+    Copyright (C) 2013 Paul Davis
+
+    This program 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.
+
+    This program 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 more 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifndef __libardour_waves_dataport_h__
+#define __libardour_waves_dataport_h__
+
+#include "ardour/types.h"
+#include "memory.h"
+        
+namespace ARDOUR {
+
+class WavesDataPort {
+public:
+
+    virtual ~WavesDataPort ();
+
+    inline const std::string& name () const
+    {
+        return _name;
+    }
+    
+    int set_name (const std::string &name)
+    {
+        _name = name;
+        return 0;
+    }
+
+    virtual DataType type () const = 0;
+
+    inline PortFlags flags () const
+    {
+        return _flags;
+    }
+
+    inline bool is_input () { return flags () & IsInput; }
+    inline bool is_output () { return flags () & IsOutput; }
+    inline bool is_physical () { return flags () & IsPhysical; }
+    inline bool is_terminal () { return flags () & IsTerminal; }
+    inline operator void* () { return (void*)this; }
+
+    inline const LatencyRange& latency_range (bool for_playback) const
+    {
+        return for_playback ? _playback_latency_range : _capture_latency_range;
+    }
+
+    inline void set_latency_range (const LatencyRange &latency_range, bool for_playback)
+    {
+        if (for_playback)
+        {
+            _playback_latency_range = latency_range;
+        }
+        else
+        {
+            _capture_latency_range = latency_range;
+        }
+    }
+
+    int connect (WavesDataPort *port);
+    
+    int disconnect (WavesDataPort *port);
+    
+    void disconnect_all ();
+
+    bool inline is_connected (const WavesDataPort *port) const
+    {
+        return std::find (_connections.begin (), _connections.end (), port) != _connections.end ();
+    }
+
+    bool inline is_connected () const
+    {
+        return _connections.size () != 0;
+    }
+
+    bool is_physically_connected () const;
+
+    inline const std::vector<WavesDataPort *>& get_connections () const { return _connections; }
+
+    virtual void* get_buffer (pframes_t nframes) = 0;
+
+protected:
+    WavesDataPort (const std::string& inport_name, PortFlags inflags);
+       virtual void _wipe_buffer() = 0;
+
+private:
+
+    std::string _name;
+    const PortFlags _flags;
+    LatencyRange _capture_latency_range;
+    LatencyRange  _playback_latency_range;
+    std::vector<WavesDataPort*> _connections;
+
+    void _connect (WavesDataPort* port, bool api_call);
+    void _disconnect (WavesDataPort* port, bool api_call);
+};
+
+} // namespace
+
+#endif /* __libardour_waves_dataport_h__ */
+