@swesterfeld commented on this pull request.
> +
+ if (!p) // first port
+ range = port_range;
+ else
+ {
+ range.min = std::min (range.min, port_range.min);
+ range.max = std::max (range.max, port_range.max);
+ }
+ }
+ return range;
+ }
+ static void
+ static_latency_callback (jack_latency_callback_mode_t mode,
+ void *jack_handle)
+ {
+ static_cast <JackPcmDriver *> (jack_handle)->latency_callback (mode);
Done.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.