Mercurial > hg > svapp
comparison audioio/AudioJACKTarget.cpp @ 415:49d5e885f58e
Some install and packaging updates
author | Chris Cannam |
---|---|
date | Wed, 24 Sep 2014 10:00:56 +0100 |
parents | 0876ea394902 |
children | 7b2dd0d4c366 |
comparison
equal
deleted
inserted
replaced
414:b65ee5c4f8bc | 415:49d5e885f58e |
---|---|
176 jack_latency_range_t *range) | 176 jack_latency_range_t *range) |
177 { | 177 { |
178 typedef void (*func)(jack_port_t *, jack_latency_callback_mode_t, jack_latency_range_t *); | 178 typedef void (*func)(jack_port_t *, jack_latency_callback_mode_t, jack_latency_range_t *); |
179 void *s = symbol("jack_port_get_latency_range"); | 179 void *s = symbol("jack_port_get_latency_range"); |
180 if (!s) { | 180 if (!s) { |
181 range.min = range.max = 0; | 181 range->min = range->max = 0; |
182 return; | 182 return; |
183 } | 183 } |
184 func f = (func)s; | 184 func f = (func)s; |
185 f(port, mode, range); | 185 f(port, mode, range); |
186 } | 186 } |