On Thu, 2007-06-14 at 00:01 +0100, Rui Nuno Capela wrote:
> Fernando Lopez-Lezcano wrote:
> > On Wed, 2007-06-13 at 14:26 +0200, Remon wrote:
> >> Traverso 0.40.0 Release Announcement
> >>
> >> The Traverso development team is pleased to announce the release of
> >> Traverso
> >> 0.40.0
> >>
> >> Traverso is a cross platform multitrack audio recording and editing suite
> >> with
> >> a clean and innovative interface targeted for home and professional use.
> >
> > Not much luck on a first try. It starts but if I try to use the Jack
> > driver (jack 0.107.2) nothing happens, jack locks up and then the
> > watchdog kills jack and qjackctl...
> >
>
> Could it possibly be, related to this:
> [jackit-devel] on_shutdown issue
> http://article.gmane.org/gmane.comp.audio.jackit/15574
>
> Special note, since jack >= 0.105.0: if any one client's process()
> callback ever returns a non zero value => jackd is doomed :(
Yup, that was the problem, the attached patch fixed it...
Thanks!!
-- Fernando
--- traverso-0.40.0/src/engine/JackDriver.cpp~ 2007-03-19 04:18:57.000000000 -0700
+++ traverso-0.40.0/src/engine/JackDriver.cpp 2007-06-13 16:50:16.000000000 -0700
@@ -234,7 +234,7 @@
int JackDriver::process_callback (nframes_t nframes)
{
device->run_cycle( nframes, 0.0);
- return 1;
+ return 0;
}
// Is there a way to get the device name from Jack? Can't find it :-(
_______________________________________________
Linux-audio-dev mailing list
[email protected]
http://lists.linuxaudio.org/mailman/listinfo.cgi/linux-audio-dev