Re: [LAD] List of working MIDI devices?

2012-11-08 Thread Thijs van severen
On 08/11/12 06:54, Thijs van severen wrote: Last week my brother got his new digital drum. its an octapad clone (only cheaper) that fits our needs perfectly. Heh, you left out the most important information - which device is it? :-)) K. details, details ... ;-) it's this one

Re: [LAD] List of working MIDI devices?

2012-11-08 Thread Clemens Ladisch
Thijs van severen wrote: if there is no such page, wouldnt it be a good idea to create something like this ? The problem is not creating such a page (multiple ones already exist), but keeping it up to date. Regards, Clemens ___ Linux-audio-dev

Re: [LAD] [ANN] hexter DSSI softsynth 1.0.0 release

2012-11-08 Thread William Light
Hey Sean, Having a lot of fun with the patch editor. Hadn't really gotten into Hexter or FM synthesis in general before. I'm using Hexter inside of Renoise, and whenever I close the editor and then re-open it, all of the editor widgets are disabled and there is a label at the top of the window

[LAD] C - Change in memory causing seg.fault (but why?)

2012-11-08 Thread Muffinman
Hello all, I'm working on a little app utilizing 'lasound' and I've got bassically what I want. However, somewhere there is a fault. Editing a random variable causes a segmentation fault. I've tried gdb but except it telling me where the application crashed (which I already knew) I did not get

Re: [LAD] C - Change in memory causing seg.fault (but why?)

2012-11-08 Thread Brett McCoy
On Thu, Nov 8, 2012 at 3:42 PM, Muffinman n...@koster.tk wrote: I'm working on a little app utilizing 'lasound' and I've got bassically what I want. However, somewhere there is a fault. Editing a random variable causes a segmentation fault. I've tried gdb but except it telling me where the

Re: [LAD] C - Change in memory causing seg.fault (but why?)

2012-11-08 Thread Muffinman
On 08-11-12 22:02, Brett McCoy wrote: You never allocate memory for the pointer long *outvl after you create it, but then try to point to a value. You need to use malloc() to initialize the memory for that pointer before you can use it. Thanks!! I believe I have some more reading to do.

Re: [LAD] Laborejo 0.4 release

2012-11-08 Thread Dominique Michel
Le Tue, 6 Nov 2012 18:36:41 +0100, Nils Gey i...@nilsgey.de a écrit : A wild crosspost appears! snip This is the release of version 0.4 Download: https://github.com/nilsgey/Laborejo/tarball/0.4 In order to make a gentoo ebuild, I need a direct link on the tarball. Can you provide it?

Re: [LAD] Laborejo 0.4 release

2012-11-08 Thread Nils Gey
On Fri, 9 Nov 2012 02:18:49 +0100 Dominique Michel dominique.mic...@vtxnet.ch wrote: Le Tue, 6 Nov 2012 18:36:41 +0100, Nils Gey i...@nilsgey.de a écrit : A wild crosspost appears! snip This is the release of version 0.4 Download: https://github.com/nilsgey/Laborejo/tarball/0.4 In

Re: [LAD] C - Change in memory causing seg.fault (but why?)

2012-11-08 Thread Jacob
On 11/08/2012 10:18 PM, Muffinman wrote: On 08-11-12 22:02, Brett McCoy wrote: You never allocate memory for the pointer long *outvl after you create it, but then try to point to a value. You need to use malloc() to initialize the memory for that pointer before you can use it. Thanks!! I