[PD-dev] [pure-data:bugs] #1139 Pd-0.43.4-extended-macosx106-x86_64 is not 64-bit!

2014-03-31 Thread Jamie Bullock
--- ** [bugs:#1139] Pd-0.43.4-extended-macosx106-x86_64 is not 64-bit!** **Status:** open **Group:** v0.43 **Created:** Mon Mar 31, 2014 10:11 AM UTC by Jamie Bullock **Last Updated:** Mon Mar 31, 2014 10:11 AM UTC **Owner:** nobody Steps to reproduce: - download Pd-0.43.4-extended

[PD-dev] [pure-data:bugs] #1114 rpole~ stops outputting values after changing value to first inlet

2013-10-04 Thread Jamie Bullock
--- ** [bugs:#1114] rpole~ stops outputting values after changing value to first inlet ** **Status:** open **Created:** Fri Oct 04, 2013 11:36 AM UTC by Jamie Bullock **Last Updated:** Fri Oct 04, 2013 11:36 AM UTC **Owner:** Miller Puckette rpole~ seems to stop outputting new values

Re: [PD-dev] [ pure-data-Patches-2419952 ] Add 'get' method to toggle

2008-12-14 Thread Jamie Bullock
On Sun, 2008-12-14 at 13:47 +0100, IOhannes m zmoelnig wrote: Hans-Christoph Steiner wrote: Yeah, I think there should be more querying capabilities in Pd in general. It allows for more dynamic behavior without resorting to strange hacks. you mean, strange hacks like storing a value

[PD-dev] toggle 'get' method patch

2008-12-12 Thread Jamie Bullock
Hi, I just submitted a patch to the tracker. Id 2419952. Could one of the admins change 'Submitter' field to 'postlude', so that I get email notifications of updates? Thanks! Jamie -- www.postlude.co.uk http://www.linkedin.com/in/jamiebullock

[PD-dev] eblosc~ and blosc~ broken in extended

2008-05-10 Thread Jamie Bullock
Hi, The above objects seem to be broken in pd-extended (0.39.3) Ubuntu Hardy. I get the error: load_object: Symbol setup_eblosc0x7e not found Other creb objects work OK though. Anyone got any ideas what the problem is before I start digging around. Jamie -- www.postlude.co.uk

Re: [PD-dev] allow only one instance of external object

2008-03-24 Thread Jamie Bullock
Hi, Try this: #include m_pd.h static t_class *counter_class; static int instance; typedef struct _counter { t_object x_obj; } t_counter; static void *counter_new(t_symbol *s, t_int argc, t_atom *argv) { t_counter *x = (t_counter

Re: [PD-dev] vamp plugins for PD (GSoC)

2008-03-17 Thread Jamie Bullock
Hi, On Sun, 2008-03-16 at 19:26 +0100, Georg Holzmann wrote: For me, as I am interested in DSP and similar things, it would be also nice to additionally add new or other MIR/feature extraction algorithms. However, I think that it would be better to add such algorithms to libxtract or any

Re: [PD-dev] vamp plugins for PD (GSoC)

2008-03-17 Thread Jamie Bullock
Thinking about it, it probably would be a good idea if the vamp host was developed separately from the PluginHost. Particularly for the purposes of GSoC, I think projects should stay a manageable size. The important thing is that the two project teams (VampPlugins, PluginHost) communicate with

Re: [PD-dev] vamp plugins for PD (GSoC)

2008-03-16 Thread Jamie Bullock
Hi! On Sun, 2008-03-16 at 13:29 +0100, Georg Holzmann wrote: Hallo! I just have come over the vamp plugins (http://www.vamp-plugins.org) again. It is a plugin system for feature extraction, audio analysis and is used by the Sonic Visualizer, Ardour, Audacity and others ... There already

[PD-dev] No float method in external causes crash was: Re: Connecting up an SQL Database to PD

2007-11-14 Thread Jamie Bullock
On Wed, 2007-11-14 at 13:13 -0600, Mike McGonagle wrote: What I meant was it crashes when you have no float method defined at all. And I thought that the 'anything' would catch it too, but it didn't on my machine, it crashed. Maybe it is just my machine, or system. What system are you

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-13 Thread Jamie Bullock
On Mon, 2007-11-12 at 16:18 -0600, Mike McGonagle wrote: One of the assumptions that I was making is that only the DATA is being returned, I was not thinking about inserting the keys into the lists. I am trying to think in terms of what would be the most efficient in regards to the amount

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-13 Thread Jamie Bullock
On Mon, 2007-11-12 at 16:51 -0600, Mike McGonagle wrote: On 11/12/07, Jamie Bullock [EMAIL PROTECTED] wrote: I'm sure you've already looked at it, but there's a (maybe) useful README and help file here: http://pure-data.cvs.sourceforge.net/pure-data/externals/postlude/psql/ Jamie

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-12 Thread Jamie Bullock
On Mon, 2007-11-12 at 13:38 -0600, Mike McGonagle wrote: God, why do I do this? I often ask myself that question! 2. I think having the SQL query provided as an object creation argument is a really bad idea. Wouldn't it be better to just pass the query in as a list It

Re: [PD-dev] get canvas names in Pd

2007-11-06 Thread Jamie Bullock
On Sun, 2007-11-04 at 17:13 -0500, Hans-Christoph Steiner wrote: Is there any existing way to get canvas names (.x%lx.c) from within Pd? In CVS: postlude/getpatchname Is this what you mean? Jamie -- www.postlude.co.uk ___ PD-dev mailing list

Re: [PD-dev] Connecting up an SQL Database to PD

2007-11-06 Thread Jamie Bullock
Hi, On Mon, 2007-11-05 at 23:33 +0100, Tim Boykett wrote: [snip] So I would find a PD sql external great! Well there is one. It's called [sqlsingle] by Iain Mott (http://www.reverberant.com/PD/index.htm). This is basically a thin wrapper around the libpq PostgreSQL library, allowing you to

Re: [PD-dev] Pd code formatter?

2007-09-28 Thread Jamie Bullock
On Wed, 2007-09-26 at 22:33 +0200, Frank Barknecht wrote: Hallo, Tim Blechmann hat gesagt: // Tim Blechmann wrote: Ah, ok, I didn't notice the switch. I've originally used the default Emacs settings for the indent. Now I think I now use stroustrup, because it was the closest to

Re: [PD-dev] Accessing canvas_list without including g_canvas.h

2007-05-04 Thread Jamie Bullock
On Thu, 2007-05-03 at 18:12 -0400, Hans-Christoph Steiner wrote: Lots of externals use g_canvas.h, so it would not be such a big deal. The whole public/private header thing in Pd is not very well defined. I don't really have a problem with using g_canvas.h per se, it's more of a

[PD-dev] Accessing canvas_list without including g_canvas.h

2007-05-03 Thread Jamie Bullock
Hi, Does anyone know if there is a way to access the canvas_list pointer from an external without including g_canvas.h? I want to be able to create a canvas and add it to the list of root canvases, but ideally I only want to use the public API (m_pd.h). Jamie

Re: [PD-dev] turn on anti-aliasing for one Tk create

2007-01-09 Thread Jamie Bullock
On Mon, 2007-01-08 at 12:26 -0500, Hans-Christoph Steiner wrote: I can make all of the lines, rectangles and ovals anti-aliases on Tcl/ Tk 8.4 on Mac OS X using this: set tk::mac::CGAntialiasLimit 2 If I set that to 0, then all lines are anti-aliased. I'm confused. Where does that