fix: minor example tweaks
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
parent
1127b1ec09
commit
72d99007c5
|
@ -42,7 +42,6 @@ proc portConnected(portA: PortIdT; portB: PortIdT; connect: cint; arg: pointer)
|
||||||
echo "Port B: <unknown>"
|
echo "Port B: <unknown>"
|
||||||
|
|
||||||
echo("Action: ", if connect > 0: "connect" else: "disconnect")
|
echo("Action: ", if connect > 0: "connect" else: "disconnect")
|
||||||
|
|
||||||
|
|
||||||
addHandler(log)
|
addHandler(log)
|
||||||
setErrorFunction(errorCb)
|
setErrorFunction(errorCb)
|
||||||
|
|
|
@ -33,7 +33,7 @@ debug "JACK server status: " & $status
|
||||||
|
|
||||||
if jclient == nil:
|
if jclient == nil:
|
||||||
error getJackStatusErrorString(status)
|
error getJackStatusErrorString(status)
|
||||||
quit 1
|
quit QuitFailure
|
||||||
|
|
||||||
when defined(windows):
|
when defined(windows):
|
||||||
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
||||||
|
|
|
@ -79,10 +79,10 @@ debug "JACK server status: " & $status
|
||||||
|
|
||||||
if jclient == nil:
|
if jclient == nil:
|
||||||
error getJackStatusErrorString(status)
|
error getJackStatusErrorString(status)
|
||||||
quit 1
|
quit QuitFailure
|
||||||
|
|
||||||
# Create sine oscillator
|
# Create sine oscillator
|
||||||
let sampleRate =(float) jclient.getSampleRate()
|
let sampleRate = jclient.getSampleRate.float
|
||||||
debug "JACK sample rate: " & $sampleRate
|
debug "JACK sample rate: " & $sampleRate
|
||||||
var osc = initSineOsc(sampleRate, sineFreq)
|
var osc = initSineOsc(sampleRate, sineFreq)
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ else:
|
||||||
if jclient.setProcessCallback(processCb, osc.addr) != 0:
|
if jclient.setProcessCallback(processCb, osc.addr) != 0:
|
||||||
error "Could not set JACK process callback function."
|
error "Could not set JACK process callback function."
|
||||||
cleanup()
|
cleanup()
|
||||||
|
quit QuitFailure
|
||||||
|
|
||||||
jclient.onShutdown(shutdownCb, nil)
|
jclient.onShutdown(shutdownCb, nil)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue