@@ -113,7 +113,7 @@ namespace Jack | |||||
jack_set_process_callback(client, Process, this); | jack_set_process_callback(client, Process, this); | ||||
jack_activate(client); | jack_activate(client); | ||||
//conenct between sapaproxy and system ports | |||||
//connect between sapaproxy and system ports | |||||
for (unsigned int i = 0; i < ports_system_capture_cnt; i++) { | for (unsigned int i = 0; i < ports_system_capture_cnt; i++) { | ||||
sprintf(port_name, "system:capture_%d", i + 1); | sprintf(port_name, "system:capture_%d", i + 1); | ||||
jack_connect(client, port_name, jack_port_name(fInputPorts[i])); | jack_connect(client, port_name, jack_port_name(fInputPorts[i])); | ||||
@@ -606,10 +606,10 @@ int jack_set_xrun_callback (jack_client_t *client, | |||||
* register a latency callback. | * register a latency callback. | ||||
* | * | ||||
* Another case is when a client wants to use | * Another case is when a client wants to use | ||||
* @ref jack_port_get_latency_range(), which only returns meaninful | |||||
* @ref jack_port_get_latency_range(), which only returns meaningful | |||||
* values when ports get connected and latency values change. | * values when ports get connected and latency values change. | ||||
* | * | ||||
* See the documentation for @ref jack_port_set_latency_range() | |||||
* See the documentation for @ref jack_port_set_latency_range() | |||||
* on how the callback should operate. Remember that the @a mode | * on how the callback should operate. Remember that the @a mode | ||||
* argument given to the latency callback will need to be | * argument given to the latency callback will need to be | ||||
* passed into @ref jack_port_set_latency_range() | * passed into @ref jack_port_set_latency_range() | ||||
@@ -53,7 +53,7 @@ | |||||
typedef struct | typedef struct | ||||
{ | { | ||||
jack_nframes_t ft; // running counter frame time | jack_nframes_t ft; // running counter frame time | ||||
jack_nframes_t fcs; // from sycle start... | |||||
jack_nframes_t fcs; // from cycle start... | |||||
jack_nframes_t lft; // last frame time... | jack_nframes_t lft; // last frame time... | ||||
} | } | ||||
FrameTimeCollector; | FrameTimeCollector; | ||||
@@ -193,7 +193,7 @@ void Jackclient::initsync (void) | |||||
_resamp->out_count = 99999; | _resamp->out_count = 99999; | ||||
_resamp->process (); | _resamp->process (); | ||||
} | } | ||||
// Initiliase state variables. | |||||
// Initialise state variables. | |||||
_t_a0 = _t_a1 = 0; | _t_a0 = _t_a1 = 0; | ||||
_k_a0 = _k_a1 = 0; | _k_a0 = _k_a1 = 0; | ||||
// Initialise loop filter state. | // Initialise loop filter state. | ||||
@@ -520,7 +520,7 @@ class Context(ctx): | |||||
""" | """ | ||||
Prints a configuration message of the form ``msg: result``. | Prints a configuration message of the form ``msg: result``. | ||||
The second part of the message will be in colors. The output | The second part of the message will be in colors. The output | ||||
can be disabled easly by setting ``in_msg`` to a positive value:: | |||||
can be disabled easily by setting ``in_msg`` to a positive value:: | |||||
def configure(conf): | def configure(conf): | ||||
self.in_msg = 1 | self.in_msg = 1 | ||||