pre-xmas commit

This commit is contained in:
2019-12-23 17:55:31 +01:00
parent db3d7283df
commit 119a61c0e5
12 changed files with 146 additions and 67 deletions

View File

@@ -1,6 +1,9 @@
#
# NC-LOOPER --- another kluge from tth
#
CC = gcc
CCOPT = -Wall -g -DDEBUG_LEVEL=1
CCOPT = -Wall -g -DDEBUG_LEVEL=0
LIBS = -lao -lsndfile -lm
ao_output.o: ao_output.c Makefile

View File

@@ -25,7 +25,7 @@ ao_device *device;
int foo;
device = init_ao_output(44100);
fprintf(stderr, "AO init -> %p\n", device);
if (verbosity) fprintf(stderr, "AO init -> %p\n", device);
switch (k) {
case 0:
@@ -40,7 +40,7 @@ switch (k) {
}
foo = close_ao_output(device);
fprintf(stderr, "AO close -> %d\n", foo);
if (verbosity) fprintf(stderr, "AO close -> %d\n", foo);
return 0;
}