xmp-jackaudio - A JACK Audio Output Plugin

Started by FIX94,

FIX94

This plugin should be able to connect to a JACK audio server to output directly into that, I did not test it for many hours yet so I might've missed some bugs. If you want to give it a shot you can grab it from my github, source included.

https://github.com/FIX94/xmp-jackaudio/releases

I would be surprised if anybody would even use this besides me but hey, now its out there ready to test for others  :D


Ian @ un4seen

One little tweak you could make is to force the XMPlay output to JACK's sample format, so that the user doesn't have to do that themselves in the Output options. The OUT_Open function can change the sample format to what it wants:

form->form.rate = jack_get_sample_rate(out_client);
form->form.res = 4;

FIX94

Quote from: Ian @ un4seenOne little tweak you could make is to force the XMPlay output to JACK's sample format, so that the user doesn't have to do that themselves in the Output options. The OUT_Open function can change the sample format to what it wants:
Thanks a lot for the suggestion, made a rev.1a with that now :)