Patches item #1159324, was opened at 2005-03-08 21:06
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1159324&group_…
Category: puredata
Group: bugfix
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Nobody/Anonymous (nobody)
Summary: testtone.pd does not work for 8-channels
Initial Comment:
obviously while copy'n'…
[View More]pasting channel7+8 from
channel5+6 someone has forgotten to update all the
send/receive labels...
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2005-05-18 11:18
Message:
Logged In: YES
user_id=564396
fixed by millerpuckette
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-18 06:23
Message:
Logged In: YES
user_id=313747
fixed this one independently, thanks.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1159324&group_…
[View Less]
Patches item #1193650, was opened at 2005-05-02 10:10
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1193650&group_…
Category: puredata-dev
Group: None
>Status: Closed
>Resolution: Accepted
Priority: 5
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Nobody/Anonymous (nobody)
Summary: exposing verbose() in m_pd.h
Initial Comment:
(i have moved this from RFE to …
[View More]patches)
this patch gives the authors of externals the
possibility to give some user-defined verbosity to
their externals.
"void verbose(int level, const char*fmt, ...);" will
output the formatted string only if the given level is
lower than the user-settable "sys_verbose"-level.
the user can set the verbosity by adding "-verbose" to
the startup flags. each "-verbose" increments the
sys_verbose by 1.
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2005-05-18 11:17
Message:
Logged In: YES
user_id=564396
accepted by millerpuckette
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-18 06:22
Message:
Logged In: YES
user_id=313747
Took it
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1193650&group_…
[View Less]
Patches item #1056914, was opened at 2004-10-29 19:24
Message generated for change (Comment added) made by timblech
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1056914&group_…
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Blechmann (timblech)
Assigned to: Nobody/Anonymous (nobody)
Summary: tooltips
Initial Comment:
port of günter geiger's tooltips for pd 0.38
----------------------------------…
[View More]------------------------------------
>Comment By: Tim Blechmann (timblech)
Date: 2005-05-18 10:29
Message:
Logged In: YES
user_id=326084
do you mean a list of tooltips as part of t_class instead of
part of t_inlet?
if it's only that, it should very easy to adapt it ...
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-18 06:49
Message:
Logged In: YES
user_id=313747
I'm still unwilling to go adding data fields in objects for
functions that
aren't basic to Pd's run-time... I think it would be more
compact to have a
tooltip field in the class.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1056914&group_…
[View Less]
Patches item #1055258, was opened at 2004-10-27 12:52
Message generated for change (Comment added) made by ggeiger
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1055258&group_…
Category: puredata
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Blechmann (timblech)
Assigned to: Nobody/Anonymous (nobody)
Summary: fftw support
Initial Comment:
this patch provides the possibility to use the fftw
library instead of …
[View More]the builtin mayer fft ...
fftw is at least twice as fast ...
it is a compile-time feature, so pd can be compiled
without the fftw ...
----------------------------------------------------------------------
>Comment By: Guenter Geiger (ggeiger)
Date: 2005-05-18 07:47
Message:
Logged In: YES
user_id=430561
There is another fast FFT package called oura, i haven't
benchmarked it personally, but it seems to be quite fast.
Its a "one source file" FFT, so it
could be used as a replacement for the meyer FFT (except, it
computes
RIRIRI instead of RRRIIII)
http://momonga.t.u-tokyo.ac.jp/~ooura/fft.html
No ALTIVEC or SSE support in it I fear.
Guenter
----------------------------------------------------------------------
Comment By: christopher clepper (cclepper)
Date: 2005-05-18 05:15
Message:
Logged In: YES
user_id=663212
I have used fftw on OSX and the Altivec version is many, many times
faster than the Pd FFT. The installation was not too difficult, although
there are tons of compile time options and the defaults are not usually the
most efficient ones. For the port of partconv~ I just statically linked it for
the binary, which added a few hundred Kbytes but it seems well worth it.
Overall it looks like the FFT lib to adopt for any cross-platform app that
requires efficient implementations on multiple architectures. The code
compares quite well to commercial libs and applications.
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-18 04:54
Message:
Logged In: YES
user_id=313747
I don't know what to do about this one. I don't use FFTW
because
it requires "configure" and I don't have a windows machine with
CYGWIN, so wouldn't ever be able to test this. Perhaps it's
for use
with linux only? Rumor has it fftw is much faster than
meyer, but I've
never wanted to go to the hassle of learning how to install it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1055258&group_…
[View Less]
Patches item #1055258, was opened at 2004-10-27 12:52
Message generated for change (Comment added) made by cclepper
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1055258&group_…
Category: puredata
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Blechmann (timblech)
Assigned to: Nobody/Anonymous (nobody)
Summary: fftw support
Initial Comment:
this patch provides the possibility to use the fftw
library instead of …
[View More]the builtin mayer fft ...
fftw is at least twice as fast ...
it is a compile-time feature, so pd can be compiled
without the fftw ...
----------------------------------------------------------------------
Comment By: christopher clepper (cclepper)
Date: 2005-05-18 05:15
Message:
Logged In: YES
user_id=663212
I have used fftw on OSX and the Altivec version is many, many times
faster than the Pd FFT. The installation was not too difficult, although
there are tons of compile time options and the defaults are not usually the
most efficient ones. For the port of partconv~ I just statically linked it for
the binary, which added a few hundred Kbytes but it seems well worth it.
Overall it looks like the FFT lib to adopt for any cross-platform app that
requires efficient implementations on multiple architectures. The code
compares quite well to commercial libs and applications.
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-18 04:54
Message:
Logged In: YES
user_id=313747
I don't know what to do about this one. I don't use FFTW
because
it requires "configure" and I don't have a windows machine with
CYGWIN, so wouldn't ever be able to test this. Perhaps it's
for use
with linux only? Rumor has it fftw is much faster than
meyer, but I've
never wanted to go to the hassle of learning how to install it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1055258&group_…
[View Less]
Patches item #1050128, was opened at 2004-10-19 08:37
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1050128&group_…
Category: puredata
Group: bugfix
Status: Open
Resolution: None
Priority: 5
Submitted By: Guenter Geiger (ggeiger)
Assigned to: Nobody/Anonymous (nobody)
Summary: Fixed -nogui behaviour on Windows
Initial Comment:
This patch is against pd from CVS
mar oct …
[View More]19 17:34:56 CEST 2004
The patch fixes the problems when running pd with -nogui
under windows. It seems that the select() function under
windows can not cope with timeouts when there are no
filedescriptors to select on. This is why putting a
netreceive
in the patch fixed the behaviour.
This patch fixes the problem by calling the "Sleep()"
function
in case there is no filedescriptor to poll.
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-17 21:54
Message:
Logged In: YES
user_id=313747
Took it (0.39test2)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1050128&group_…
[View Less]
Patches item #1055258, was opened at 2004-10-27 05:52
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1055258&group_…
Category: puredata
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Blechmann (timblech)
Assigned to: Nobody/Anonymous (nobody)
Summary: fftw support
Initial Comment:
this patch provides the possibility to use the fftw
library …
[View More]instead of the builtin mayer fft ...
fftw is at least twice as fast ...
it is a compile-time feature, so pd can be compiled
without the fftw ...
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-17 21:54
Message:
Logged In: YES
user_id=313747
I don't know what to do about this one. I don't use FFTW
because
it requires "configure" and I don't have a windows machine with
CYGWIN, so wouldn't ever be able to test this. Perhaps it's
for use
with linux only? Rumor has it fftw is much faster than
meyer, but I've
never wanted to go to the hassle of learning how to install it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1055258&group_…
[View Less]
Patches item #1056912, was opened at 2004-10-29 10:23
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1056912&group_…
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Blechmann (timblech)
Assigned to: Nobody/Anonymous (nobody)
Summary: comments for pdrc files
Initial Comment:
this patch will change the behaviour of pd that lines
…
[View More]beginning with # in a pdrc file will be skipped
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-17 21:50
Message:
Logged In: YES
user_id=313747
pdrc is going away... not this year, but at least by 2010.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1056912&group_…
[View Less]
Patches item #1056914, was opened at 2004-10-29 10:24
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1056914&group_…
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Blechmann (timblech)
Assigned to: Nobody/Anonymous (nobody)
Summary: tooltips
Initial Comment:
port of günter geiger's tooltips for pd 0.38
----------------------------…
[View More]------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-17 21:49
Message:
Logged In: YES
user_id=313747
I'm still unwilling to go adding data fields in objects for
functions that
aren't basic to Pd's run-time... I think it would be more
compact to have a
tooltip field in the class.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1056914&group_…
[View Less]
Patches item #1057297, was opened at 2004-10-30 06:45
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1057297&group_…
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Blechmann (timblech)
Assigned to: Nobody/Anonymous (nobody)
Summary: setable font
Initial Comment:
this patch adds a command line flag called -typeface
... this allows …
[View More]the user to use a custom typeface
(standard is courier)
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2005-05-17 21:47
Message:
Logged In: YES
user_id=313747
Took it (0.38test2)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1057297&group_…
[View Less]