Skip to content

Commit 3e3fe44

Browse files
committed
Fix some typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
1 parent 044e4f3 commit 3e3fe44

45 files changed

Lines changed: 89 additions & 89 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ TODO https://github.com/corrados/jamulus/issues/341#issuecomment-647172946
501501
- show number of connected clients in window title (and therefore in OS task
502502
bar)
503503

504-
- added "Whats this" help text to the GUI controls in the general settings
504+
- added "What's this" help text to the GUI controls in the general settings
505505
dialog, added Tool Tips to some GUI controls
506506

507507
- server logging history grid lines of weekend days are now plotted with

android/sound.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ oboe::DataCallbackResult CSound::onAudioReady(oboe::AudioStream *oboeStream, voi
262262
}
263263

264264
// We're good to start recording now
265-
// Take the data from the recording device ouput buffer and move
265+
// Take the data from the recording device output buffer and move
266266
// it to the vector ready to send up to the server
267267

268268
float *floatData = static_cast<float *>(audioData);

libs/opus/celt/arm/armcpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ opus_uint32 opus_cpu_capabilities(void)
148148
}
149149
#else
150150
/* The feature registers which can tell us what the processor supports are
151-
* accessible in priveleged modes only, so we can't have a general user-space
151+
* accessible in privileged modes only, so we can't have a general user-space
152152
* detection method like on x86.*/
153153
# error "Configured to use ARM asm but no CPU detection method available for " \
154154
"your platform. Reconfigure with --disable-rtcd (or send patches)."

libs/opus/celt/arm/celt_pitch_xcorr_arm-gnu.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ xcorr_kernel_neon_process8:
8181
@
8282
@ Load x[0...7]
8383
VLD1.16 {d6, d7}, [r4]!
84-
@ Unlike VMOV, VAND is a data processsing instruction (and doesn't get
84+
@ Unlike VMOV, VAND is a data processing instruction (and doesn't get
8585
@ assembled to VMOV, like VORR would), so it dual-issues with the prior VLD1.
8686
VAND d3, d5, d5
8787
SUBS r12, r12, #8

libs/opus/celt/arm/celt_pitch_xcorr_arm.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ xcorr_kernel_neon_process8
7878
;
7979
; Load x[0...7]
8080
VLD1.16 {d6, d7}, [r4]!
81-
; Unlike VMOV, VAND is a data processsing instruction (and doesn't get
81+
; Unlike VMOV, VAND is a data processing instruction (and doesn't get
8282
; assembled to VMOV, like VORR would), so it dual-issues with the prior VLD1.
8383
VAND d3, d5, d5
8484
SUBS r12, r12, #8

libs/opus/celt/celt_encoder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ static int transient_analysis(const opus_val32 * OPUS_RESTRICT in, int len, int
364364
unmask=0;
365365
/* We should never see NaNs here. If we find any, then something really bad happened and we better abort
366366
before it does any damage later on. If these asserts are disabled (no hardening), then the table
367-
lookup a few lines below (id = ...) is likely to crash dur to an out-of-bounds read. DO NOT FIX
367+
lookup a few lines below (id = ...) is likely to crash due to an out-of-bounds read. DO NOT FIX
368368
that crash on NaN since it could result in a worse issue later on. */
369369
celt_assert(!celt_isnan(tmp[0]));
370370
celt_assert(!celt_isnan(norm));

libs/opus/celt/entcode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ struct ec_ctx{
8282
In the encoder: the low end of the current range.*/
8383
opus_uint32 val;
8484
/*In the decoder: the saved normalization factor from ec_decode().
85-
In the encoder: the number of oustanding carry propagating symbols.*/
85+
In the encoder: the number of outstanding carry propagating symbols.*/
8686
opus_uint32 ext;
8787
/*A buffered input/output symbol, awaiting carry propagation.*/
8888
int rem;

libs/opus/celt/entenc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
_size: The size of the buffer, in chars.*/
3636
void ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size);
3737
/*Encodes a symbol given its frequency information.
38-
The frequency information must be discernable by the decoder, assuming it
38+
The frequency information must be discernible by the decoder, assuming it
3939
has read only the previous symbols from the stream.
4040
It is allowable to change the frequency information, or even the entire
4141
source alphabet, so long as the decoder can tell from the context of the

libs/opus/celt/kiss_fft.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#include "stack_alloc.h"
4343

4444
/* The guts header contains all the multiplication and addition macros that are defined for
45-
complex numbers. It also delares the kf_ internal functions.
45+
complex numbers. It also declares the kf_ internal functions.
4646
*/
4747

4848
static void kf_bfly2(

libs/opus/include/opus.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ extern "C" {
103103
* @endcode
104104
*
105105
* where opus_encoder_get_size() returns the required size for the encoder state. Note that
106-
* future versions of this code may change the size, so no assuptions should be made about it.
106+
* future versions of this code may change the size, so no assumptions should be made about it.
107107
*
108108
* The encoder state is always continuous in memory and only a shallow copy is sufficient
109109
* to copy it (e.g. memcpy())
@@ -357,7 +357,7 @@ OPUS_EXPORT int opus_encoder_ctl(OpusEncoder *st, int request, ...) OPUS_ARG_NON
357357
* error = opus_decoder_init(dec, Fs, channels);
358358
* @endcode
359359
* where opus_decoder_get_size() returns the required size for the decoder state. Note that
360-
* future versions of this code may change the size, so no assuptions should be made about it.
360+
* future versions of this code may change the size, so no assumptions should be made about it.
361361
*
362362
* The decoder state is always continuous in memory and only a shallow copy is sufficient
363363
* to copy it (e.g. memcpy())

0 commit comments

Comments
 (0)