Kjetil Matheussen

Results 358 comments of Kjetil Matheussen

Confirmed. I think delete current delete current seqblock, while "delete" deletes the seqblock under the mouse, but I don't remember right now when/if those two can be different.

I'll give a better answer later, but I think the difference is for keybinding. Maybe one of them is for currently selected instrument(s), and the other one for the instrument...

Yeah, what I wrote was correct. The two entries have different keybindings, one for deleting selected seqblocks and the other one for deleting seqblock under mouse. But when using the...

This is what they du: "Delete" / Key:ZL1 deletes seqblock directly below the mouse pointer "Delete current" / Key:Delete deletes the currently selected seqblock The "Delete" entry is the confusing...

On Wed, Jul 12, 2017 at 4:00 PM, René Hansen wrote: > I've built a small test application (64 bit) using simple_client.c of the > jackaudio/example-clients respository. On Linux and...

``` #define CR_STRINGIZE_DETAIL(x) #x #define CR_STRINGIZE(x) CR_STRINGIZE_DETAIL(x) #define CR_FORMATEVENT(msg,...) (msg ": " __FILE__ " line " CR_STRINGIZE(__LINE__) "."__VA_ARGS__) #define TRACK(a) do{fprintf(stderr, CR_FORMATEVENT(a));fflush(stderr);}while(0) int main(){ TRACK("a"); ... TRACK("b"); ... TRACK("c"); return...

> > If you don't bother finding out how to get backtrace, perhaps you can add various debug printings to the program: > > The main function of my application...

Maybe try using weakjack: https://github.com/x42/weakjack (a couple of alternatives are also linked in the bottom of the README file)

Hmm. If you are using Visual Studio, and don't mind using a hack as solution to the problem, it might not be much work to change JackRouter.cpp into dynamically linking...

If I haven't misunderstood the problem, I think it's important to point out that it is not jack itself that's causing this, it's the ASIO jack bridge. Just unregister that...