Skip to content

Commit 738e179

Browse files
committed
libspeexdsp: fix typos in comments
1 parent 67535be commit 738e179

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libspeexdsp/jitter.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static spx_int16_t compute_opt_delay(JitterBuffer *jitter)
211211
int j;
212212
int next=-1;
213213
int latest = 32767;
214-
/* Pick latest amoung all sub-windows */
214+
/* Pick latest among all sub-windows */
215215
for (j=0;j<MAX_BUFFERS;j++)
216216
{
217217
if (pos[j] < tb[j].filled && tb[j].timing[pos[j]] < latest)

libspeexdsp/kiss_fft.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2323
#include "os_support.h"
2424

2525
/* The guts header contains all the multiplication and addition macros that are defined for
26-
fixed or floating point complex numbers. It also delares the kf_ internal functions.
26+
fixed or floating point complex numbers. It also declares the kf_ internal functions.
2727
*/
2828

2929
static void kf_bfly2(

libspeexdsp/resample.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ static void speex_free(void *ptr) {free(ptr);}
104104
#include "resample_neon.h"
105105
#endif
106106

107-
/* Numer of elements to allocate on the stack */
107+
/* Number of elements to allocate on the stack */
108108
#ifdef VAR_ARRAYS
109109
#define FIXED_STACK_ALLOC 8192
110110
#else

0 commit comments

Comments
 (0)