Re: [LAD] ttsoot - yet another DSP library :)

2010-01-16 Thread torbenh
On Fri, Jan 15, 2010 at 10:49:21AM +0100, Stéphane Letz wrote: > > Le 15 janv. 2010 à 10:03, torbenh a écrit : > > > > > hi... > > > > i am working on a c++0x DSP library. > > variadic templates prove to be a nice way to handle > > the massive function inlining required to build efficient sam

Re: [LAD] ttsoot - yet another DSP library :)

2010-01-15 Thread Stéphane Letz
Le 15 janv. 2010 à 10:03, torbenh a écrit : > > hi... > > i am working on a c++0x DSP library. > variadic templates prove to be a nice way to handle > the massive function inlining required to build efficient samplebased > processing graphs. > > the idioms i am currently using for the contai

Re: [LAD] ttsoot - yet another DSP library :)

2010-01-15 Thread Victor Lazzarini
Torben, this looks very interesting. Quite a lot of C++ complexity, though. I'll keep following it to see where you are heading. Regards Victor On 15 Jan 2010, at 09:03, torbenh wrote: > > hi... > > i am working on a c++0x DSP library. > variadic templates prove to be a nice way to handle >

[LAD] ttsoot - yet another DSP library :)

2010-01-15 Thread torbenh
hi... i am working on a c++0x DSP library. variadic templates prove to be a nice way to handle the massive function inlining required to build efficient samplebased processing graphs. the idioms i am currently using for the containers require gcc-4.5 though, so this is still a bit of a show-st