summaryrefslogtreecommitdiff
path: root/src/DSSI-render.c
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-01-29 15:51:02 -0800
committeryo mama <pepper@scannerjammer.com>2015-01-29 15:51:02 -0800
commit3dce74ec0302c4a62d4b51406178cd7dac50e7ee (patch)
tree74a03f95c451b21b89c8da0f5d7f843abcc06e9a /src/DSSI-render.c
parent626426cbed64119d48458120d4a7bc8b281bf458 (diff)
autotools working a bit better
Diffstat (limited to 'src/DSSI-render.c')
-rw-r--r--src/DSSI-render.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/DSSI-render.c b/src/DSSI-render.c
index f9e3fad..0f7185a 100644
--- a/src/DSSI-render.c
+++ b/src/DSSI-render.c
@@ -1,32 +1,9 @@
-/*
- * Copyright (C) 2005 James McDermott
- * jamesmichaelmcdermott@gmail.com
- *
- * This program is derived from jack-dssi-host (Copyright 2004 Chris
- * Cannam, Steve Harris and Sean Bolton).
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 01222-1307
- * USA
- */
#define CLI_FUNCS
#include "DSSI-render.h"
#include "ladspa_run_synth.h"
#include "midi/midi_loader.h"
-
void
print_usage(void) {
fprintf(stderr, "A command-line DSSI host.\n");
@@ -122,8 +99,6 @@ void connect_ports(void){
}
}
} /* 'for (j...' LADSPA port number */
-
-
}
int
@@ -131,7 +106,6 @@ main(int argc, char **argv) {
my_name = basename(argv[0]);
-
sample_rate = SAMPLE_RATE;
/* Probably an unorthodox srandom() technique... */
@@ -233,7 +207,6 @@ main(int argc, char **argv) {
exit(1);
}
-
/* Get the plugin descriptor and check the run_synth*() function
* exists */
int j = 0;
@@ -626,4 +599,3 @@ main(int argc, char **argv) {
return 0;
}
-