Browse Source

Fix misc. typos

Found via `codespell -q 3 -L capela,nd,numer,parm`
tags/v1.9.19
luz paz Filipe Coelho <falktx@falktx.com> 2 years ago
parent
commit
0fe68adecc
5 changed files with 6 additions and 6 deletions
  1. +1
    -1
      android/JackSapaProxy.cpp
  2. +2
    -2
      common/jack/jack.h
  3. +1
    -1
      tests/test.cpp
  4. +1
    -1
      tools/zalsa/jackclient.cc
  5. +1
    -1
      waflib/Context.py

+ 1
- 1
android/JackSapaProxy.cpp View File

@@ -113,7 +113,7 @@ namespace Jack
jack_set_process_callback(client, Process, this);
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++) {
sprintf(port_name, "system:capture_%d", i + 1);
jack_connect(client, port_name, jack_port_name(fInputPorts[i]));


+ 2
- 2
common/jack/jack.h View File

@@ -606,10 +606,10 @@ int jack_set_xrun_callback (jack_client_t *client,
* register a latency callback.
*
* 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.
*
* 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
* argument given to the latency callback will need to be
* passed into @ref jack_port_set_latency_range()


+ 1
- 1
tests/test.cpp View File

@@ -53,7 +53,7 @@
typedef struct
{
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...
}
FrameTimeCollector;


+ 1
- 1
tools/zalsa/jackclient.cc View File

@@ -193,7 +193,7 @@ void Jackclient::initsync (void)
_resamp->out_count = 99999;
_resamp->process ();
}
// Initiliase state variables.
// Initialise state variables.
_t_a0 = _t_a1 = 0;
_k_a0 = _k_a1 = 0;
// Initialise loop filter state.


+ 1
- 1
waflib/Context.py View File

@@ -520,7 +520,7 @@ class Context(ctx):
"""
Prints a configuration message of the form ``msg: result``.
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):
self.in_msg = 1


Loading…
Cancel
Save