Compare commits

..

No commits in common. "9def17c07c908c4c126b49badcd5b09a4d9c6292" and "1127b1ec097ad0bf113334de7761938173dceb68" have entirely different histories.

4 changed files with 7 additions and 7 deletions

View File

@ -14,9 +14,9 @@ before the first public release.
Also, I plan to add a higher-level abstraction on top of the direct mapping
from Nim procs and types to C functions and types, probably in the form of
a JACK client object, which takes care of creating a JACK client instance,
registering ports and setting up all the callbacks necessary for a well-behaved
JACK application.
a JACk client object, which takes care of a JACK client instance, registering
ports and setting up all the callbacks necessary for a well-behaved JACK
application.
# Installation

View File

@ -42,6 +42,7 @@ proc portConnected(portA: PortIdT; portB: PortIdT; connect: cint; arg: pointer)
echo "Port B: <unknown>"
echo("Action: ", if connect > 0: "connect" else: "disconnect")
addHandler(log)
setErrorFunction(errorCb)

View File

@ -33,7 +33,7 @@ debug "JACK server status: " & $status
if jclient == nil:
error getJackStatusErrorString(status)
quit QuitFailure
quit 1
when defined(windows):
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)

View File

@ -79,10 +79,10 @@ debug "JACK server status: " & $status
if jclient == nil:
error getJackStatusErrorString(status)
quit QuitFailure
quit 1
# Create sine oscillator
let sampleRate = jclient.getSampleRate.float
let sampleRate =(float) jclient.getSampleRate()
debug "JACK sample rate: " & $sampleRate
var osc = initSineOsc(sampleRate, sineFreq)
@ -96,7 +96,6 @@ else:
if jclient.setProcessCallback(processCb, osc.addr) != 0:
error "Could not set JACK process callback function."
cleanup()
quit QuitFailure
jclient.onShutdown(shutdownCb, nil)