Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonathan Wilkes
flext
Commits
be623c16
Commit
be623c16
authored
Jan 07, 2005
by
thomas
Browse files
small updates
git-svn-id:
https://svn.grrrr.org/ext/trunk@966
4d9ac71a-51e6-0310-8455-cad1006bcd31
parent
63d1fab3
Changes
3
Hide whitespace changes
Inline
Side-by-side
notes.txt
View file @
be623c16
...
...
@@ -55,6 +55,7 @@ TESTS TO DO:
- PD: problems with timed buffer redrawing (takes a lot of cpu time)
- hard thread termination upon object destruction doesn't seem to work properly -> crash
- Max rounding bug ... buffer resize could be one sample less!
- flext_dsp: Max/MSP doesn't correctly report in/out channel counts
- PD: figure out what "pointer" messages do and whether they are correctly implemented in flext
...
...
@@ -62,4 +63,4 @@ TESTS TO DO:
- Max buffer~ resize: flext_base::buffer::Frames(): must we use buffer or system sample rate?
- check whether m_dsp gets called upon deletion of a used buffer (PD and MaxMSP may behave differently).
-> PD does call m_dsp
-> PD does call m_dsp
, Max/MSP does not
source/fldsp.h
View file @
be623c16
...
...
@@ -50,7 +50,7 @@ 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
*/
...
...
@@ -60,7 +60,7 @@ public:
\bug Doesn't work in Max/MSP - is always 0
*/
int
ChannelsOut
()
const
{
return
chnsout
;
}
//! typedef describing a signal vector
#if FLEXT_SYS == FLEXT_SYS_JMAX
typedef
fts_symbol_t
t_signalvec
;
...
...
source/flsupport.h
View file @
be623c16
...
...
@@ -2,7 +2,7 @@
flext - C++ layer for Max/MSP and pd (pure data) externals
Copyright (c) 2001-200
4
Thomas Grill (
xovo@gmx.net
)
Copyright (c) 2001-200
5
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.
...
...
@@ -225,7 +225,7 @@ public:
bool
IsDirty
()
const
;
//! Get symbol of buffer
t_symbol
*
Symbol
()
const
{
return
const_cast
<
t_symbol
*>
(
sym
)
;
}
const
t_symbol
*
Symbol
()
const
{
return
sym
;
}
//! Get literal name of buffer
const
char
*
Name
()
const
{
return
sym
?
GetString
(
sym
)
:
""
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment