Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/x37v/jackcpp
C++ bindings for the jack audio callback and lockfree ringbuffer
https://github.com/x37v/jackcpp
Last synced: 15 days ago
JSON representation
C++ bindings for the jack audio callback and lockfree ringbuffer
- Host: GitHub
- URL: https://github.com/x37v/jackcpp
- Owner: x37v
- License: gpl-3.0
- Created: 2011-04-19T20:34:57.000Z (over 13 years ago)
- Default Branch: develop
- Last Pushed: 2016-12-17T07:11:17.000Z (almost 8 years ago)
- Last Synced: 2024-07-31T14:09:09.206Z (4 months ago)
- Language: C++
- Homepage: http://www.x37v.info/projects/jackcpp
- Size: 252 KB
- Stars: 27
- Watchers: 4
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
A C++ class wrapping most of the jack client functionality, a "blocking"
interface for jack and a template class wrapping the jack ring buffer. There
is also a swig interface generator for making scripting interfaces for the
blockingaudioio class.by Alex Norman http://www.x37v.info
Works with Linux, Will Wolcott tested with OSX. Everything works fine except
it seems that there is a bug in the jack implementation that causes crashes
when jack_client_open (called in the constructor) starts a jack server. It
seems that the OSX version doesn't pause the jack_client_open thread while
starting the server, so calls to jack_connect cause crashes after the server is
automatically started. Basically, you should start a jack server before you
start your jack clients if you are OSX.REQUIREMENTS
Jack and its development headers.
Swig to generate swig wrappers.DOCUMENTATION
There are doxygen automatically generated docs in doc/SWIG scripting interfaces.
see the example script files in the swig directory.BUILD instructions
Edit config.mk to reflect your system setup.
To build:
makeTo install:
sudo make installTo make tests:
make testTo make ruby swig interface:
make rubyTo make lua swig interface:
make luaTo make python swig interface:
make python