Skip to content

Commit f734a2e

Browse files
committed
audio gen canon
1 parent 9570891 commit f734a2e

File tree

5 files changed

+118
-10
lines changed

5 files changed

+118
-10
lines changed

Makefile_many

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ OUT_DIR ?= ./
3030
OUT_EXT ?= .out
3131
OBJECT_EXT ?= .o
3232
TMP_EXT ?= .tmp
33+
TMP_PREF ?= tmp.
3334

3435
# Basename without extension of file to run on run target.
3536
RUN ?= main
@@ -91,7 +92,7 @@ clean:
9192
if [ ! '$(OUT_DIR)' = './' ]; then \
9293
rm -rf '$(OUT_DIR)' ;\
9394
else \
94-
rm -rf *'$(OBJECT_EXT)' *'$(OUT_EXT)' *'$(TMP_EXT)' callgrind.out.* ;\
95+
rm -rf *'$(OBJECT_EXT)' *'$(OUT_EXT)' *'$(TMP_EXT)' '$(TMP_PREF)'* callgrind.out.* ;\
9596
fi
9697
if [ -x 'clean' ]; then ./clean; fi
9798

c/interactive/audio_gen.c

+95-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
/*
22
http://stackoverflow.com/a/36510894/895245
3+
4+
TODO
5+
6+
- smooth transition between sines without tic sound. Needs a phase change I imagine.
7+
- ADSR https://en.wikipedia.org/wiki/Synthesizer#Attack_Decay_Sustain_Release_.28ADSR.29_envelope
8+
Currently, hitting the same not twice sounds the same as hitting it once for double the time,
9+
(except for the tic of phase, which is a bug as well...)
10+
- drum / percurssion synth
311
*/
412

513
#include <math.h>
@@ -13,7 +21,8 @@ typedef uint16_t point_type;
1321
#define WRITE(name, func) \
1422
f = fopen("tmp." name ".raw", "wb"); \
1523
for (t = 0; t < NSAMPLES; ++t) { \
16-
write_ampl(f, func); \
24+
func; \
25+
write_ampl(f, ampl); \
1726
} \
1827
fclose(f);
1928

@@ -32,15 +41,13 @@ double piano_freq(unsigned int i) {
3241
}
3342

3443
/* Chord formed by the nth note of the piano. */
35-
point_type piano_sum(unsigned int max_ampl, unsigned int time, double sample_freq, unsigned int nargs, ...) {
44+
point_type piano_sum(unsigned int max_ampl, unsigned int time,
45+
double sample_freq, unsigned int nargs, unsigned int *notes) {
3646
double freq;
3747
unsigned int i;
38-
va_list args;
39-
va_start(args, nargs);
4048
double sum = 0;
4149
for (i = 0 ; i < nargs; ++i)
42-
sum += sin(PI2 * time * piano_freq(va_arg(args, int)) / sample_freq);
43-
va_end(args);
50+
sum += sin(PI2 * time * piano_freq(notes[i]) / sample_freq);
4451
return max_ampl * 0.5 * (nargs + sum) / nargs;
4552
}
4653

@@ -202,10 +209,91 @@ int main(void) {
202209

203210
f = fopen("tmp.chord.raw", "wb");
204211
for (t = 0; t < NSAMPLES; ++t) {
205-
ampl = piano_sum(max_ampl, t, SAMPLE_FREQ, 4, C4, E4, G4, B4);
212+
ampl = piano_sum(max_ampl, t, SAMPLE_FREQ, 4, (unsigned int[]){C4, E4, G4, B4});
206213
write_ampl(f, ampl);
207214
}
208215
fclose(f);
209216

217+
/*
218+
# Pianola
219+
220+
# Canon
221+
222+
https://en.wikipedia.org/wiki/Player_piano
223+
224+
http://www.8notes.com/scores/420.asp After where I've stopped,
225+
that score gets weird, maybe find another one.
226+
*/
227+
{
228+
unsigned int i;
229+
unsigned int samples_per_unit = SAMPLE_FREQ * 0.375;
230+
unsigned int *ip[] = {
231+
(unsigned int[]){4, 2, C3, E4},
232+
(unsigned int[]){4, 2, G3, D4},
233+
(unsigned int[]){4, 2, A3, C4},
234+
(unsigned int[]){4, 2, E3, B3},
235+
236+
(unsigned int[]){4, 2, F3, A3},
237+
(unsigned int[]){4, 2, C3, G3},
238+
(unsigned int[]){4, 2, F3, A3},
239+
(unsigned int[]){4, 2, G3, B3},
240+
241+
(unsigned int[]){4, 3, C3, G4, E5},
242+
(unsigned int[]){4, 3, G3, B4, D5},
243+
(unsigned int[]){4, 2, A3, C5},
244+
(unsigned int[]){4, 3, E3, G4, B4},
245+
246+
(unsigned int[]){4, 3, F3, C4, A4},
247+
(unsigned int[]){4, 3, C3, G4, G4},
248+
(unsigned int[]){4, 3, F3, F4, A4},
249+
(unsigned int[]){4, 3, G3, D4, B4},
250+
251+
(unsigned int[]){2, 3, C4, E4, C5},
252+
(unsigned int[]){2, 3, C4, E4, C5},
253+
(unsigned int[]){2, 3, G3, D4, D5},
254+
(unsigned int[]){2, 3, G3, D4, B4},
255+
256+
(unsigned int[]){2, 3, A3, C4, C5},
257+
(unsigned int[]){2, 3, A3, C4, E5},
258+
(unsigned int[]){2, 2, E3, G5},
259+
(unsigned int[]){2, 2, E3, G4},
260+
261+
(unsigned int[]){2, 3, F3, A3, A4},
262+
(unsigned int[]){2, 3, F3, A3, F4},
263+
(unsigned int[]){2, 3, C3, E4},
264+
(unsigned int[]){2, 3, C3, G4},
265+
266+
(unsigned int[]){2, 3, F3, A3, F4},
267+
(unsigned int[]){2, 3, F3, A3, C5},
268+
(unsigned int[]){2, 3, G3, B3, B4},
269+
(unsigned int[]){2, 3, G3, B3, G4},
270+
271+
(unsigned int[]){2, 3, C4, E4, C5},
272+
(unsigned int[]){1, 3, C4, E4, E5},
273+
(unsigned int[]){1, 3, C4, E4, G5},
274+
(unsigned int[]){1, 2, G3, G5},
275+
(unsigned int[]){1, 2, G3, A5},
276+
(unsigned int[]){1, 2, G3, G5},
277+
(unsigned int[]){1, 2, G3, F5},
278+
279+
(unsigned int[]){3, 3, A3, C4, E5},
280+
(unsigned int[]){1, 3, A3, C4, E5},
281+
(unsigned int[]){1, 3, E3, G3, E5},
282+
(unsigned int[]){1, 3, E3, G3, F5},
283+
(unsigned int[]){1, 3, E3, G3, E5},
284+
(unsigned int[]){1, 3, E3, G3, D5},
285+
};
286+
f = fopen("tmp.canon.raw", "wb");
287+
for (i = 0; i < sizeof(ip) / sizeof(int*); ++i) {
288+
unsigned int *cur = ip[i];
289+
unsigned int total = samples_per_unit * cur[0];
290+
for (t = 0; t < total; ++t) {
291+
ampl = piano_sum(max_ampl, t, SAMPLE_FREQ, cur[1], &cur[2]);
292+
write_ampl(f, ampl);
293+
}
294+
}
295+
fclose(f);
296+
}
297+
210298
return EXIT_SUCCESS;
211299
}

c/preprocessor.c

+10
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,16 @@ int main() {
184184
assert(strcmp(CAT("1,", "2"), "1,2") == 0);
185185
}
186186

187+
/*
188+
# Function inside argument
189+
190+
- http://stackoverflow.com/questions/163365/how-do-i-make-a-c-macro-behave-like-a-function
191+
- http://stackoverflow.com/questions/154136/do-while-and-if-else-statements-in-c-c-macros
192+
*/
193+
{
194+
/* TODO */
195+
}
196+
187197
/*
188198
# Argument inside string
189199

c/varargs_h.c

+11
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
# va_end
2727
2828
Analogous to va_start after usage. Mandatory.
29+
30+
# Vs C99 array literal
31+
32+
If all arguments are of a single type, use arrays, they are saner.
2933
*/
3034

3135
#include "common.h"
@@ -138,5 +142,12 @@ int main() {
138142
}
139143
}
140144

145+
/*
146+
# Array argument
147+
148+
http://stackoverflow.com/questions/280940/calling-a-c-function-with-a-varargs-argument-dynamically
149+
http://stackoverflow.com/questions/14705920/passing-an-array-as-parameters-to-a-vararg-function
150+
*/
151+
141152
return EXIT_SUCCESS;
142153
}

ffmpeg/clean

-2
This file was deleted.

0 commit comments

Comments
 (0)