aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fldsp.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-01-26 05:02:06 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-01-26 05:02:06 +0000
commitdcbc90c265de6782a1dc6f2e5e7e9fa3c4743f87 (patch)
tree1945ec1d26aaba80a35073c1e40bf8c395740e2f /externals/grill/flext/source/fldsp.h
parent329c9b00931e368ff4b16177bfc7a70b033689b9 (diff)
- fixed typos and 64-bit compatibility
usage of symbols for method and attribute adding fixed buggy unbinding of receive symbols reconsidered flext::buffer:Update some restructuring added object construction and destruction flags better templates, some minor changes build system: added profiler mode, more fixes added method for clicks into object box - conform to idle callback functionality in devel_0_38 oops, forgot about SIMD for Windows fix for ToOut calls in dsp time svn path=/trunk/; revision=2540
Diffstat (limited to 'externals/grill/flext/source/fldsp.h')
-rw-r--r--externals/grill/flext/source/fldsp.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/externals/grill/flext/source/fldsp.h b/externals/grill/flext/source/fldsp.h
index 80731848..7b7f381a 100644
--- a/externals/grill/flext/source/fldsp.h
+++ b/externals/grill/flext/source/fldsp.h
@@ -2,7 +2,7 @@
flext - C++ layer for Max/MSP and pd (pure data) externals
-Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net)
+Copyright (c) 2001-2005 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
@@ -51,14 +51,10 @@ public:
//! returns current block (aka vector) size
int Blocksize() const { return blksz; }
- /*! \brief returns number of audio system input channels
- \bug Doesn't work in Max/MSP - is always 0
- */
+ //! returns number of input channels
int ChannelsIn() const { return chnsin; }
- /*! \brief returns number of audio system output channels
- \bug Doesn't work in Max/MSP - is always 0
- */
+ //! returns number of output channels
int ChannelsOut() const { return chnsout; }
//! typedef describing a signal vector
@@ -93,13 +89,6 @@ public:
*/
virtual void m_signal(int n,t_sample *const *insigs,t_sample *const *outsigs);
-#if FLEXT_SYS != FLEXT_SYS_MAX
- /*! \brief called with "enable" message: pauses/resumes dsp
- \note PD only - implicitely defined in Max/MSP
- */
- virtual void m_enable(bool on);
-#endif
-
//! @}