[PD-dev] [ pure-data-Bugs-3601707 ] iemlib on Win32 cannot open unicode files/paths

2013-01-21 Thread SourceForge . net
Bugs item #3601707, was opened at 2013-01-21 19:46 Message generated for change (Tracker Item Submitted) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3601707&group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3601706 ] iem_image on Win32 cannot open unicode paths/filenames

2013-01-21 Thread SourceForge . net
Bugs item #3601706, was opened at 2013-01-21 19:44 Message generated for change (Tracker Item Submitted) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3601706&group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3601705 ] iemmatrix on Win32 cannot open unicode files/paths

2013-01-21 Thread SourceForge . net
Bugs item #3601705, was opened at 2013-01-21 19:42 Message generated for change (Tracker Item Submitted) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3601705&group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3601703 ] mrpeach on Win32 cannot open unicode files/paths

2013-01-21 Thread SourceForge . net
Bugs item #3601703, was opened at 2013-01-21 19:40 Message generated for change (Tracker Item Submitted) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3601703&group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3601702 ] bonk~ on Win32 cannot open unicode paths/filenames

2013-01-21 Thread SourceForge . net
Bugs item #3601702, was opened at 2013-01-21 19:39 Message generated for change (Tracker Item Submitted) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3601702&group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3601701 ] pd-lua on Win32 has trouble with unicode paths/filenames

2013-01-21 Thread SourceForge . net
Bugs item #3601701, was opened at 2013-01-21 19:33 Message generated for change (Tracker Item Submitted) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3601701&group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3601700 ] [msgfile] on Win32 cannot open unicode filenames

2013-01-21 Thread SourceForge . net
Bugs item #3601700, was opened at 2013-01-21 19:31 Message generated for change (Tracker Item Submitted) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3601700&group_id=55736 Please note that this message will contain a full copy of the

Re: [PD-dev] [PD] libpd netreceive

2013-01-21 Thread Thomas Grill
Sorry, one more note: In libpd, sched_tick is currently calling in the PROCESS macro in the context of the audio callback (in z_libpd.c). The function sched_tick handles all timed objects (such as metro) and therefore triggers all kinds of message processing downstream, where also memory operations

Re: [PD-dev] [PD] libpd netreceive

2013-01-21 Thread Thomas Grill
By the way, is MIDI in working at all? I ask because it doesn't for me, and there's a sys_pollmidiqueue function in Pd that doesn't appear to be called in the libpd wrappers. gr~~~ 2013/1/21 Thomas Grill > > > > 2013/1/21 padawa...@obiwannabe.co.uk > > ** >> >> On 21 January 2013 at 14:57 Thom

Re: [PD-dev] [PD] libpd netreceive

2013-01-21 Thread Thomas Grill
2013/1/21 padawa...@obiwannabe.co.uk > ** > > On 21 January 2013 at 14:57 Thomas Grill wrote: > > > I am not sure whether using memory management functions in an audio > callback is a problem > > Yikes! > > > http://www.rossbencina.com/code/real-time-audio-programming-101-time-waits-for-nothin

Re: [PD-dev] [PD] libpd netreceive

2013-01-21 Thread padawa...@obiwannabe.co.uk
On 21 January 2013 at 14:57 Thomas Grill wrote: > > I am not sure whether using memory management functions in an audio callback > is a problem > Yikes! http://www.rossbencina.com/code/real-time-audio-programming-101-time-waits-for-nothing___ Pd-d

Re: [PD-dev] [PD] libpd netreceive

2013-01-21 Thread Thomas Grill
Hi Peter, at least on iOS, the whole thing boils down to the patch below. I added two initialization functions to libpd_init, the first sys_findprogdir for finding the pd binary directory (actually to initialize the symbol sys_libdir which can also be done manually), and second sys_startgui to init

Re: [PD-dev] [PD] libpd netreceive

2013-01-21 Thread Peter Brinkmann
Hi Thomas, There's no mailing list for libpd, but there is a forum: http://createdigitalnoise.com/categories/pd-everywhere In any case, this does seem like a question for pd-dev, so we're in the right place :) About sys_microsleep, there are two potential problems that I'm concerned about about: T

Re: [PD-dev] [ pure-data-Patches-3587404 ] ability to start multiple pd-guis

2013-01-21 Thread Roman Haefeli
On Don, 2013-01-03 at 14:26 -0800, SourceForge.net wrote: > Patches item #3587404, was opened at 2012-11-14 22:29 > Message generated for change (Comment added) made by millerpuckette > You can respond by visiting: > https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3587404&group_id=557

Re: [PD-dev] [PD] libpd netreceive

2013-01-21 Thread Thomas Grill
Ok Peter, let's move this over to pd-dev. There is no specific libpd list, is it? I have now quickly looked into what the context of the socket polling is like in Pd. It is even done in the audio callback (via sys_pollgui) if this is enabled, so it can't really have serious side effects. As far as