Skip to content

Commit d1a69dc

Browse files
committed
Merge branch 'develop'
# Conflicts: # Package.resolved
2 parents 73b438e + a891477 commit d1a69dc

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Try to make sure your changes conform to the [Swift API Design Guidelines](https://swift.org/documentation/api-design-guidelines/). If you have 40 minutes you'd like to have well-spent, watch [Modern Swift API Design](https://developer.apple.com/videos/play/wwdc2019/415/) from WWDC 2019.
44

5-
Ready to send us a pull request? Please make sure your request is based on the a `develop` branch of the repository since `main` should only hold stable releases.
5+
Ready to send us a pull request? Please make sure your request is based on the `develop` branch of the repository since `main` should only hold stable releases.

Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ let package = Package(
99
products: [.library(name: "SoundpipeAudioKit", targets: ["SoundpipeAudioKit"])],
1010
dependencies: [
1111
.package(url: "https://github.com/AudioKit/KissFFT", from: "1.0.0"),
12-
.package(url: "https://github.com/AudioKit/AudioKit", from: "5.3.0"),
13-
.package(url: "https://github.com/AudioKit/AudioKitEX", from: "5.3.0"),
12+
.package(url: "https://github.com/AudioKit/AudioKit", from: "5.4.0"),
13+
.package(url: "https://github.com/AudioKit/AudioKitEX", from: "5.4.0"),
1414
],
1515
targets: [
1616
.target(name: "Soundpipe",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can AudioKit and any of the other AudioKit libraries using Collections
3434
|--------------------|-------------------------------------------------------------|---------------|
3535
| SoundpipeAudioKit | API for using Soundpipe-powered Audio Units | Swift |
3636
| CSoundpipeAudioKit | Audio Units for the Soundpipe DSP | Objective-C++ |
37-
| Soundpipe | Low-level DSP for oscillators, physcial models, and effects | C |
37+
| Soundpipe | Low-level DSP for oscillators, physical models, and effects | C |
3838

3939
## Generators / Instruments
4040

Sources/Soundpipe/modules/foo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int sp_foo_destroy(sp_foo **p)
2323

2424
int sp_foo_init(sp_data *sp, sp_foo *p)
2525
{
26-
/* Initalize variables here. */
26+
/* Initialize variables here. */
2727
p->bar = 123;
2828
return SP_OK;
2929
}

Sources/Soundpipe/modules/ftbl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ int sp_gen_line(sp_data *sp, sp_ftbl *ft, const char *argstring)
162162
y2 = args->tbl[i + 1];
163163

164164
if(x2 < x1) {
165-
fprintf(stderr, "Error: x coordiates must be sequential!\n");
165+
fprintf(stderr, "Error: x coordinates must be sequential!\n");
166166
break;
167167
}
168168

@@ -215,7 +215,7 @@ int sp_gen_xline(sp_data *sp, sp_ftbl *ft, const char *argstring)
215215
y2 = args->tbl[i + 1];
216216

217217
if(x2 < x1) {
218-
fprintf(stderr, "Error: x coordiates must be sequential!\n");
218+
fprintf(stderr, "Error: x coordinates must be sequential!\n");
219219
break;
220220
}
221221

Sources/Soundpipe/modules/mincer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ int sp_mincer_compute(sp_data *sp, sp_mincer *p, SPFLOAT *in2, SPFLOAT *out)
157157

158158
/* window it */
159159
fwin[i] = insig * win[i];
160-
/* back windo, bwin */
160+
/* back window, bwin */
161161
post = (int) (pos - hsize*pitch);
162162
post *= 1;
163163
post += 0;

Sources/Soundpipe/modules/randi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ int sp_randi_init(sp_data *sp, sp_randi *p)
6464
p->num2 = sp_randGab;
6565
p->dfdmax = (p->num2 - p->num1) / SP_FT_MAXLEN * 1.0;
6666
break;
67-
default: /* old behaviour as developped by Gabriel */
67+
default: /* old behaviour as developed by Gabriel */
6868
p->num1 = p->num2 = 0.0;
6969
p->dfdmax = 0.0;
7070
}

Sources/Soundpipe/modules/thresh.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ int sp_thresh_destroy(sp_thresh **p)
1515

1616
int sp_thresh_init(sp_data *sp, sp_thresh *p)
1717
{
18-
/* Initalize variables here. */
18+
/* Initialize variables here. */
1919
p->init = 1;
2020
p->mode = 0;
2121
p->prev = 0;

Sources/Soundpipe/modules/wpkorg35.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
* WPKorg35
33
*
4-
* This is a filter based off of an implemenation the Korg35 filter by Will
5-
* Pirke. It has been ported from the CCRMA chugin by the same name.
4+
* This is a filter based off of an implementation of the Korg35 filter
5+
* by Will Pirke. It has been ported from the CCRMA chugin by the same name.
66
*
77
*/
88

0 commit comments

Comments
 (0)