Hi all,
I've fixed a couple of bugs (notably openpanel) and improved audio support for OSX and (I hope) also for ASIO in MS Windows. For either platform, you should be able to specify "-inchannels" "-outchannels", "-soundindev", "-soundoutdev", and "-audiobuf" flags meaningfully.
I think you have to specify the "in" and "out" flags to have the same value for either of these two platforms. Later I'll supply simpler-to-use "-channels" and "-sounddev" flags.
I still can't actually run ASIO myself, so I'm only hoping Pd will work with it. As always, you feedback is welcome!
cheers Miller
Hi, Miller Puckette hat gesagt: // Miller Puckette wrote:
I've fixed a couple of bugs (notably openpanel) and improved audio support for OSX and (I hope) also for ASIO in MS Windows. For either platform, you should be able to specify "-inchannels" "-outchannels", "-soundindev", "-soundoutdev", and "-audiobuf" flags meaningfully.
I think you have to specify the "in" and "out" flags to have the same value for either of these two platforms. Later I'll supply simpler-to-use "-channels" and "-sounddev" flags.
I still can't actually run ASIO myself, so I'm only hoping Pd will work with it. As always, you feedback is welcome!
Am I correct, that PD uses PortAudio for ASIO and Mac? I wonder, if it would be possible, or hard, to use PortAudio in PD for Linux. Then, if someone in the jackit team would come around to add Jack (or ALSA) support to PortAudio it looks like a clean solution to integrate Jack via PortAudio into PD (and into a lot of other apps), instead of the current patch.
Of course currently neither Jack nor ALSA is supported in PortAudio, afaik, so this is not an urgent issue, but just me thinking too loud ;)
__ __
Frank Barknecht ____ ______ ____ __ trip\ \ / /wire ______
/ __// __ /__/ __// // __ \ / / __ \ ___\
/ / / ____/ / / / // ____// /\ \ ___\____ \
/_/ /_____/ /_/ /_//_____// / \ \_____\_____
/_/ _\
Hi,
I think this would be easy to do, and as soon as portaudio supports "Jack" somehow I'll gratefully adopt it...
cheers Miller
On Sun, Mar 24, 2002 at 12:05:28PM +0100, Frank Barknecht wrote:
Hi, Miller Puckette hat gesagt: // Miller Puckette wrote:
I've fixed a couple of bugs (notably openpanel) and improved audio support for OSX and (I hope) also for ASIO in MS Windows. For either platform, you should be able to specify "-inchannels" "-outchannels", "-soundindev", "-soundoutdev", and "-audiobuf" flags meaningfully.
I think you have to specify the "in" and "out" flags to have the same value for either of these two platforms. Later I'll supply simpler-to-use "-channels" and "-sounddev" flags.
I still can't actually run ASIO myself, so I'm only hoping Pd will work with it. As always, you feedback is welcome!
Am I correct, that PD uses PortAudio for ASIO and Mac? I wonder, if it would be possible, or hard, to use PortAudio in PD for Linux. Then, if someone in the jackit team would come around to add Jack (or ALSA) support to PortAudio it looks like a clean solution to integrate Jack via PortAudio into PD (and into a lot of other apps), instead of the current patch.
Of course currently neither Jack nor ALSA is supported in PortAudio, afaik, so this is not an urgent issue, but just me thinking too loud ;)
Ciao,
__ __
Frank Barknecht ____ ______ ____ __ trip\ \ / /wire ______ / __// __ /__/ __// // __ \ / / __ \ ___\ / / / ____/ / / / // ____// /\ \ ___\____ \ /_/ /_____/ /_/ /_//_____// / \ \_____\_____
/_/ _\
hi,
_at least_ this patch is needed to enable restarting test15 after quitting:
--- s_inter.c~ Fri Mar 22 01:49:52 2002 +++ s_inter.c Sun Mar 24 12:39:56 2002 @@ -538,7 +538,7 @@ "'networking' turned on (see Pd's html doc for details.)\n"); exit(1); }
server.sin_port = ++portno;
server.sin_port = htons((unsigned short)++portno);
Krzysztof
btw:
--- g_graph.c~ Wed Mar 13 17:16:44 2002 +++ g_graph.c Sun Mar 24 11:36:50 2002 @@ -688,11 +688,11 @@ i++, f += x->gl_ytick.k_inc) { int tickpix = (i % x->gl_ytick.k_lperb ? 2 : 4);
sys_vgui(".x%x.c create line %d %d %d %d -tags %f\n",
sys_vgui(".x%x.c create line %d %d %d %d -tags %s\n",
Miller Puckette wrote: ...
it. As always, you feedback is welcome!
Oops, these are real trouble... I've turned out 0.16 to fix these bugs.
cheers Miller
On Sun, Mar 24, 2002 at 12:51:30PM +0100, Krzysztof Czaja wrote:
hi,
_at least_ this patch is needed to enable restarting test15 after quitting:
--- s_inter.c~ Fri Mar 22 01:49:52 2002 +++ s_inter.c Sun Mar 24 12:39:56 2002 @@ -538,7 +538,7 @@ "'networking' turned on (see Pd's html doc for details.)\n"); exit(1); }
server.sin_port = ++portno;
server.sin_port = htons((unsigned short)++portno);
Krzysztof
btw:
--- g_graph.c~ Wed Mar 13 17:16:44 2002 +++ g_graph.c Sun Mar 24 11:36:50 2002 @@ -688,11 +688,11 @@ i++, f += x->gl_ytick.k_inc) { int tickpix = (i % x->gl_ytick.k_lperb ? 2 : 4);
sys_vgui(".x%x.c create line %d %d %d %d -tags %f\n",
sys_vgui(".x%x.c create line %d %d %d %d -tags %s\n",
Miller Puckette wrote: ...
it. As always, you feedback is welcome!