[linux-audio-dev] jack newbie question

2005-04-08 Thread Tim Blechmann
hi all ... another jack newbie question ... sometimes jacks kicks out my application, since the subgraph times out ... basically i have two questions about that: - is there an api function, that tells jack not to kick the application or a callback that tells the application that it has been

Re: [linux-audio-dev] jack newbie question

2005-04-08 Thread Florian Schmidt
On Fri, 8 Apr 2005 23:15:31 +0200 Tim Blechmann [EMAIL PROTECTED] wrote: hi all ... another jack newbie question ... sometimes jacks kicks out my application, since the subgraph times out Assuming that other jack clients work without problems, then this problem description really means

Re: [linux-audio-dev] jack newbie question

2005-04-08 Thread Paul Davis
- is there an api function, that tells jack not to kick the application absolutely not. if you miss RT deadlines for your process() callback (or more precisely, if JACK believes you did) it has no choice but to evict you from the graph. if you are left in the graph, the chances are that you will

Re: [linux-audio-dev] jack newbie question

2005-04-08 Thread Christoph Eckert
(e.g. for live work where an xrun is better than a client being kicked). but its definitely not up to the client. would it be possible that the client automatically tries to reconnect as soon as it was disconnected? Maybe 1 second later? Best regards ce

Re: [linux-audio-dev] jack newbie question

2005-04-08 Thread Paul Davis
would it be possible that the client automatically tries to reconnect as soon as it was disconnected? Maybe 1 second later? sure. xmms-jack does this. or something like it. but i don't that think that this is what tim meant. remember, if you overrun RT deadlines, something is probably wrong.

Re: [linux-audio-dev] jack newbie question

2005-04-08 Thread Lee Revell
On Sat, 2005-04-09 at 03:02 +0200, Christoph Eckert wrote: (e.g. for live work where an xrun is better than a client being kicked). but its definitely not up to the client. would it be possible that the client automatically tries to reconnect as soon as it was disconnected? Maybe 1 second

Re: [linux-audio-dev] jack newbie question

2005-04-08 Thread Lee Revell
On Fri, 2005-04-08 at 22:17 -0400, Paul Davis wrote: would it be possible that the client automatically tries to reconnect as soon as it was disconnected? Maybe 1 second later? sure. xmms-jack does this. or something like it. but i don't that think that this is what tim meant. remember,